From 8567c7b4d00775546100004c179815f769cb869b Mon Sep 17 00:00:00 2001 From: robinvandermolen Date: Mon, 6 Jan 2025 15:01:11 +0100 Subject: [PATCH] :fire: [open-formulieren/open-forms#2177] Removing circle from the available map interactions circle interaction is a leaflet custom thing, that isn't supported by geoJson. (To make it work, we would have to define the shape as a marker interaction, with extra custom properties). Due to this reason, the registration apis don't/probably won't support this interaction. For now, it would be better to not allow circle interactions --- src/formio/components/map.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/formio/components/map.ts b/src/formio/components/map.ts index fe660e5..b4a0689 100644 --- a/src/formio/components/map.ts +++ b/src/formio/components/map.ts @@ -61,7 +61,6 @@ export interface MapComponentSchema * https://leaflet.github.io/Leaflet.draw/docs/leaflet-draw-latest.html#drawoptions */ interactions?: { - circle: boolean; polygon: boolean; polyline: boolean; marker: boolean;