1

我有两个 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应地图中进行操作。

4

1 回答 1

1

您可以使用简单的方法更改 ClusteredEntityCollection 的 z-index(因为它应该是 EntityCollection 的扩展):

greenLayer.setOptions({zIndex: 1000});
于 2013-07-03T16:03:54.927 回答