我尝试使用带有一组标记和弹出窗口的openlayers3构建一个地图。标记和弹出窗口到目前为止工作,但是当我点击一个标记(显示弹出窗口)然后 - 再次点击地图时 - 在另一个标记上,它会显示一个与第一个标记具有相同内容的弹出窗口。我已经做过研究,但找不到有用的东西。所以这是弹出窗口的部分:
//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');
}
});
希望有人可以帮助我。谢谢!
答案 0 :(得分:4)
我遇到了同样的问题,并在此处找到了我的解决方案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'));
答案 1 :(得分:1)