我有两个 var 作为,
map = new Microsoft.Maps.Map(document.getElementById("mapDiv"), {
showMapTypeSelector:false,
showScalebar:false,
enableSearchLogo:false,
showDashboard:true,
credentials:"Aku0L3I-4aBqUL0zUWpJYNIp-vppMK2h",
mapTypeId:Microsoft.Maps.MapTypeId.road,
zoom:4,
center:new Microsoft.Maps.Location(38.3466110000000029,-77.0653559999999942)
});
此 Map var 用于在我的 bing 地图上绘制多边形。
greenLayer = new ClusteredEntityCollection(map, {
singlePinCallback: createPin,
clusteredPinCallback: createClusteredPin,
clusterPlacementType: 2,
clusteringEnabled: true,
visible: true,
gridSize: 50
});
这个绿层用于在 bing 地图上绘制图钉。
在跑步的时候,
the polygon is up and the pins is down.
i need to draw polygon down and pins up.
如何在必greenlayer which comes up
应地图中进行操作。