master #14

Merged
m.lettere merged 15 commits from master into prod 2024-06-04 18:54:59 +02:00
1 changed files with 1 additions and 0 deletions
Showing only changes of commit c8116426b9 - Show all commits

View File

@ -915,6 +915,7 @@ class CCPGeoInputWidgetController extends CCPBaseInputWidgetController {
} }
const result = features.map(f=>{ const result = features.map(f=>{
const geom = f.getGeometry().getType() === "Circle" ? ol.geom.Polygon.fromCircle(f.getGeometry(), 50) : f.getGeometry() const geom = f.getGeometry().getType() === "Circle" ? ol.geom.Polygon.fromCircle(f.getGeometry(), 50) : f.getGeometry()
const tgeom = geom.transform(this.#map.getView().getProjection(), new ol.proj.Projection("EPSG:4326"))
return format.writeGeometry(geom) return format.writeGeometry(geom)
}).join("\n") }).join("\n")