
Initialize Map with Map Type
Include National Address Maps, Google Maps or Bing Maps, while initalizing map.
Javascript Source
functionmyInitializeAPI() {
varmapDiv = 'map'; //id of the div where the map should appear
varmapType = '21'; //default or 10=SPMaps; 21=Google; 31=Bing; 12=Traffic
varmapLanguage = 'A';
varproxyUrl = '';
varapiClientKey = '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>