更新或破坏openlayers3

时间:2015-05-13 12:32:46

标签: popup openlayers-3

我尝试使用带有一组标记和弹出窗口的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');
  }
});
希望有人可以帮助我。谢谢!

2 个答案:

答案 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)

我为你做了一个榜样。看看吧!

你必须"写"每个标记上的一些内容。

http://embed.plnkr.co/hhEAWk/preview