gpt4 book ai didi

popup - 更新或销毁 openlayers3 中的弹出窗口

转载 作者:行者123 更新时间:2023-12-04 18:39:17 25 4
gpt4 key购买 nike

我尝试使用带有一组标记和弹出窗口的 openlayers3 构建 map 。到目前为止,标记和弹出窗口都可以工作,但是当我单击一个标记(显示弹出窗口)然后 - 无需再次单击 map - 在另一个标记上时,它会显示一个与第一个内容相同的弹出窗口。我已经做了研究,但找不到有用的东西。所以这是我的弹出窗口的部分:

//popup
var element = document.getElementById('popup');

var popup = new ol.Overlay({
element: element,
positioning: 'bottom-center',
stopEvent: false
});

map.addOverlay(popup);

// display popup on click
map.on('click', function(evt) {
var feature = map.forEachFeatureAtPixel(evt.pixel,
function(feature, layer) {
return feature;
});

if (feature) {
var geometry = feature.getGeometry();
var coord = geometry.getCoordinates();
popup.setPosition(coord);
$(element).popover({
'placement': 'top',
'html': true,
'content': feature.get('information')
});
$(element).popover('show');
} else {
$(element).popover('destroy');
}
});

希望有人可以帮助我。谢谢!

最佳答案

我遇到了同样的问题,并在这里找到了我的解决方案 https://gis.stackexchange.com/questions/137561/openlayers-3-markers-and-popovers

尝试改变你的

$(element).popover({
'placement': 'top',
'html': true,
'content': feature.get('information')
});


$(element).attr('data-placement', 'top');
$(element).attr('data-html', true);
$(element).attr('data-content', feature.get('information'));

关于popup - 更新或销毁 openlayers3 中的弹出窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30214893/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com