如何在开放图层中显示矢量的多个特征?

  • 本文关键字:特征 显示 图层 openlayers
  • 更新时间 :
  • 英文 :


我正在构建一个 web 地图,其中包含从地理服务器导入的一些图层。我已经将它们转换为矢量 JSON。我想在 HTML 面板中显示地图外部几何的所有特征。

我只能用一个我用 .get 方法使用的功能"obra_nro"来做到这一点。您可以在下面看到我使用的代码。

但是,我仍然找不到显示其余功能的方法。

提前感谢您的任何建议。

var selectInteraction = new ol.interaction.Select({
hitTolerance:1  ///// Precision del puntero del mouse para seleccionar
});
olMap.getInteractions().extend([selectInteraction]);
var displayFeatureInfo = function(pixel) {
var features = [];
olMap.forEachFeatureAtPixel(pixel, function(feature, layer) {
features.push(feature);
});
var container = document.getElementById('description');
if (features.length > 0) {
var info = [];
for (var i = 0, ii = features.length; i < ii; ++i) {
info.push(features[i].get('obra_nro'));
}
container.innerHTML = info.join(', ') || '(unknown)';
} else {
container.innerHTML = '&nbsp;';
}   
};
olMap.on('click' , function(evt) {
var pixel = evt.pixel;
displayFeatureInfo(pixel);
});

例如,您可以使用每个矢量源上的视图范围调用forEachFeatureIntersectingExtenthttps://openlayers.org/en/latest/apidoc/module-ol_source_Vector-VectorSource.html#forEachFeatureIntersectingExtent

var features = [];
olMap.getLayers().forEach(function(layer) {
var source = layer.getSource();
if (source && source.forEachFeatureIntersectingExtent) {
source.forEachFeatureIntersectingExtent(olMap.getView().calculateExtent(), function(feature) {
features.push(feature);
});
}
});

与朋友一起,我们找到了解决问题的合理方法。我们保留了原始函数,但我们修改了"if"部分。

var selectInteraction = new ol.interaction.Select({
hitTolerance:1  ///// Precision del puntero del mouse para seleccionar
});
olMap.addInteraction(selectInteraction);
olMap.on('singleclick', function(e) {
var feature = olMap.forEachFeatureAtPixel(e.pixel, function(feature) {
return feature;
});
var infoElement = document.getElementById('description');
var html = "";
if(feature){
html += feature.get('obra_nro')+"</br>";
html += feature.get('contratist')+"</br>";
html += feature.get('mes1')+"</br>";
html += feature.get('mes2')+"</br>";
html += feature.get('mes3')+"</br>";
html += feature.get('mes4')+"</br>";
}
infoElement.innerHTML = html;
});

相关内容

  • 没有找到相关文章

最新更新