如何获取具有无限平移的投影特征的坐标(OpenLayers)



我正在创建一个弹出控件,用于在用户将鼠标移动到特定层上的功能上时显示信息。我希望弹出窗口捕捉到特征的几何体(点(,而不是使用鼠标位置的坐标。

问题是,这对主要功能很好,但是,当向左或向右平移一个地球旋转并悬停在投影的功能上时,弹出窗口会覆盖原始坐标处的主要功能,而不是扩展平移视图中的功能。

这是我的代码:

const container = document.getElementById('popup');
const content = document.getElementById('popup-content');
var popup = new ol.Overlay({
element: container,
positioning: "bottom-center",
stopEvent: false
});
map.addOverlay(popup);
map.on("pointermove", function (e) {
if (e.dragging) {
popup.setPosition(undefined);
return;
}
const feature = map.forEachFeatureAtPixel(e.pixel,
function (feature, layer) {
if (layer === participantLayer) {
return feature;
}
}, { hitTolerance: 10 });
if (feature) {
popup.setPosition(feature.getGeometry().getCoordinates());
content.innerHTML = "...";
} else {
popup.setPosition(undefined);
}
});

我认为这个问题与使用feature.getGeometry().getCoordinates()有关,因为它只返回实际特征的坐标,而不返回投影的坐标。有没有办法返回投影特征几何体位置的像素坐标?

let featureCoords = feature.getGeometry().getCoordinates();  
const projWidth = ol.extent.getWidth(map.getView().getProjection().getExtent());  
const worldsAway = Math.round(e.coordinate[0] / projWidth);  
featureCoords[0] = featureCoords[0] + worldsAway * projWidth;  
popup.setPosition(featureCoords);   

试试看。

相关内容

  • 没有找到相关文章

最新更新