我正在尝试升级到 OpenLayers v5.2.0,但看不到将圆绘制为多边形的清晰路径(我需要它以便将其存储在我们的数据库中)
这就是我正在做的...
if (webMapValues.activeDrawControl == "Circle") {
var wgs84Sphere = new ol.Sphere(6378138);
webMapValues.drawObj = new ol.interaction.Draw({
features: webMapValues.features,
type: /** @type {ol.geom.GeometryType} */ (webMapValues.drawType),
geometryFunction: function (coordinates, geometry) {
if (!geometry) {
geometry = new ol.geom.Polygon(null);
}
var center = coordinates[0];
var last = coordinates[1];
var dx = center[0] - last[0];
var dy = center[1] - last[1];
var radius = Math.sqrt(dx * dx + dy * dy);
var circle = ol.geom.Polygon.circular(wgs84Sphere, ol.proj.toLonLat(center), radius);
circle.transform('EPSG:4326', 'EPSG:3857');
geometry.setCoordinates(circle.getCoordinates());
return geometry;
}
});
}
...但是 ol.Sphere 在这个版本的 OpenLayers 中甚至不是一个东西,并且在这个版本的 OpenLayers 中的 ol.sphere 不喜欢这个......
任何帮助是极大的赞赏!!