Initialize Map with Map Type
Include National Address Maps, Google Maps or Bing Maps, while initalizing map.
Javascript Source
function
myInitializeAPI() {
var
mapDiv = 'map'; //id of the div where the map should appear
var
mapType = '21'; //default or 10=SPMaps; 21=Google; 31=Bing; 12=Traffic
var
mapLanguage = 'A';
var
proxyUrl = '';
var
apiClientKey = 'your-api-key';
SANGC_LoadMapViewer(mapDiv, mapType, mapLanguage, proxyUrl, apiClientKey);
};
HTML Source
<div id="map"
style="position:absolute;overflow:hidden;width:500px;height:600px; margin:0px; padding:0px; background-color:white;"></div>