* fixes bug where multipolygon behaved in mapclient as single polygon, making e.g. deleting of single polygons impossible without removing everything
This commit is contained in:
mpeltriaux 2023-02-23 14:56:49 +01:00
parent fb2900aa74
commit b494bee65e

View File

@ -318,7 +318,7 @@ class Geometry(BaseResource):
geom = self.geom
if geom.srid != srid:
geom.transform(ct=srid)
polygons = [p for p in geom]
geojson = {
"type": "FeatureCollection",
"crs": {
@ -330,8 +330,9 @@ class Geometry(BaseResource):
"features": [
{
"type": "Feature",
"geometry": json.loads(geom.json),
"geometry": json.loads(p.json),
}
for p in polygons
]
}
return geojson