1
我開始將我的代碼從Bing Maps AJAX v7 API遷移到新的v8,但有些事情已經改變。我現有的代碼添加工具提示到圖釘不再工作。任何人都解決了這個問題?Bing Maps v8圖釘工具提示
我開始將我的代碼從Bing Maps AJAX v7 API遷移到新的v8,但有些事情已經改變。我現有的代碼添加工具提示到圖釘不再工作。任何人都解決了這個問題?Bing Maps v8圖釘工具提示
我想通了。由於新控件是在html5畫布內繪製的,所以控件無法通過常規方式訪問。但我使用信息框控件來模仿工具提示。代碼:
HTML
<script type='text/javascript' src='http://www.bing.com/api/maps/mapcontrol?callback=getMap' async defer></script>
的javascript:
function getMap() {
PanningRectLimit = Microsoft.Maps.LocationRect.fromCorners(new Microsoft.Maps.Location(30.181359, -95.662621), new Microsoft.Maps.Location(29.603220, -95.077050));
MapOptions = {
credentials: "yourkey", center: new Microsoft.Maps.Location(29.871261, -95.364891), showLocateMeButton: false, maxBounds: PanningRectLimit,
mapTypeId: Microsoft.Maps.MapTypeId.road, zoom: 9, enableClickableLogo: false, tileBuffer: 2, showMapTypeSelector: false, useInertia: false, enableSearchLogo: false, disableKeyboardInput: true
};
map = new Microsoft.Maps.Map(document.getElementById("MapPlace"), MapOptions);
LayerOffices = new Microsoft.Maps.Layer({ visible: true, zIndex: 2 });
infobox = new Microsoft.Maps.Infobox(LastValidLocation, { description: 'description', showCloseButton: false, showPointer: false });
var off1 = new Microsoft.Maps.Pushpin(new Microsoft.Maps.Location(mylat, mylng), { typeName: 'Office1', enableHoverStyle: true });
var off2 = new Microsoft.Maps.Pushpin(new Microsoft.Maps.Location(mylat2, mylng2), { typeName: 'Office2', enableHoverStyle: true });
Microsoft.Maps.Events.addHandler(off1 , 'mouseover', tooltipPin);
Microsoft.Maps.Events.addHandler(off2 , 'mouseover', tooltipPin);
Microsoft.Maps.Events.addHandler(off1 , 'mouseout', tooltipPin2);
Microsoft.Maps.Events.addHandler(off2 , 'mouseout', tooltipPin2);
LayerOffices.add(off1);
LayerOffices.add(off2);
map.layers.insert(LayerOffices);
}
function tooltipPin(e) {
var loc = e.target.getLocation();
infobox.setMap(map);
infobox.setLocation(loc);
infobox.setHtmlContent('<div id="infoboxText" style="background-color:White; border-style:solid; border-width:medium; border-color:DarkOrange; min-height:40px; width: 150px; "><p id="infoboxDescription" style="position: absolute; top: 10px; left: 10px; width: 220px; ">mydescription</p></div>');
};
function tooltipPin2(e) {
infobox.setHtmlContent('<div></div>');
};