问题描述
我正在寻找一种使用 Openlayers 在 WKT 格式内绘制圆圈的方法。我知道 WKT 标准不支持圆,但有人说你可以使用一个点 wkt 然后为它设置一个半径(对于 android 但也可能适用于其他东西)。因此,我的问题是,如果可能的话,我该如何在 Openlayers 中做到这一点?
链接到汤姆所说的https://stackoverflow.com/a/58430532
这就是我制作多边形的方法
let polyFeature = new ol.format.WKT().readFeature(polygonWKT,{
// Must use both projections in order to draw the feature with the wkt format
dataProjection : "epsg:4326",featureProjection: map.getView().getProjection() // Can at least get the standard projection and not have to fiddle with that
});
vectorSource.addFeature(polyFeature);
我问这个问题是想看看我是否可以使坐标的绘制/保存更简单。现在,我有一个字符串“coord1,coord2;”中的坐标。并且在使用多边形时必须拆分它们,然后在保存坐标时将它们转换回该字符串格式。 使用 wkt,我可以将字符串扔到 Openlayers 函数中,这样我就完成了,如果我可以对圆做同样的事情,那就太好了。
我用的 Openlayers v6(某些版本) 香草js,PHP
解决方法
如果你总是用 JSON 包装 wkt
'{"wkt":"POINT(28.625360369528934 77.2227479486792)"}'
您可以选择添加半径来表示圆
'{"wkt":"POINT(28.625360369528934 77.2227479486792)","radius":50}'
然后 OpenLayers 可以解析 JSON 字符串并将带半径的点转换为圆
let json = JSON.parse(jsonString);
let polyFeature = new ol.format.WKT().readFeature(json.wkt,{
dataProjection : "EPSG:4326",featureProjection: map.getView().getProjection()
});
if (json.radius && polyFeature.getGeometry().getType() === 'Point') {
polyFeature.setGeometry(new ol.geom.Circle(polyFeature.getGeometry().getCoordinates(),json.radius));
}
vectorSource.addFeature(polyFeature);