0

我有一个弹出窗口,我在 OpenLayers 中这样声明:

var feature = new O[penLayers.Feature(markers, lonLat);
feature.popupClass = OpenLayers.Class(OpenLayers.Popup.FramedCloud, {
    'autoSize': true;
    'maxSize': new OpenLayers.Size(500, 300)
});

问题是我的地图上的多个弹出窗口是使用连续的 z 索引创建的,因此弹出窗口将始终按添加标记的顺序显示,最新标记的弹出窗口始终位于顶部。

有没有办法改变它,使最近点击的标记弹出窗口位于顶部,而不是最近添加的标记?我已经尝试在 firebug 中手动更改 z-index(作为测试),但它并没有把它带到前面。我宁愿避免删除和重新制作弹出窗口或标记,但这似乎是我能找到的唯一解决方案。

4

3 回答 3

3

您可以使用 jQuery 来制作zindex类似这样的技巧

clientesLayer = new OpenLayers.Layer.Vector("PuntosVentas");


feature = new OpenLayers.Feature.Vector(
    new OpenLayers.Geometry.Point(vectorFatri.puntos[index][0],vectorFatri.puntos[index][1]),
    {description: '<div><div class="popup_title"><h4>'+vectorFatri.imei+'</h4></div><div class="popup_content">'+vectorFatri.fecha[index]+'</div></div>'} ,
    {
        strokeColor: "#00FF00",
        strokeOpacity: 1,
        strokeWidth: 2,
        fillColor: "#FF5500",
        fillOpacity: 0.5,
        pointRadius: 6,
        pointerEvents: "visiblePainted"
    }
);

controls = {
    selector: new OpenLayers.Control.SelectFeature(clientesLayer, {

        onSelect: function (feature) {
            feature.popup = new OpenLayers.Popup.FramedCloud("pop",
                    feature.geometry.getBounds().getCenterLonLat(),
                    new OpenLayers.Size(300,200),
                    '<div class="markerContent">'+feature.attributes.description+'</div>',
                    null,
                    true,
                    function() { controls['selector'].unselectAll(); }
            );
            map.addPopup(feature.popup);
            {# console.log('me seleccionaron');#}

            //jquery trick to make the popup front of everything
            $(".olPopup").css("z-index", 10000)

            {# setTimeout(function(){$(".olPopup").css("z-index", 10000);}, 2000);#}
        },

        onUnselect: function (feature) {
            map.removePopup(feature.popup);
            feature.popup.destroy();
            feature.popup = null;
        }
    })
}

map.addControl(controls['selector']);
controls['selector'].activate();
clientesLayer.addFeatures(feature);
于 2013-05-04T05:03:53.213 回答
1

我无法弄清楚如何可靠地更改 z-index 并让它工作,但我能够通过完全删除然后在我想要它在前面创建地图标记的新克隆来解决我的问题。

于 2012-11-15T00:01:03.090 回答
0

调用ms.setZIndex(100000);wherems是标记的容器(的一个实例OpenLayers.Layer.Markers);

于 2013-12-27T06:34:34.023 回答