Skip to content

Commit

Permalink
✨ [open-formulieren/open-forms#2177] Added interactions property to M…
Browse files Browse the repository at this point in the history
…apComponentSchema
  • Loading branch information
robinmolen committed Dec 3, 2024
1 parent d6ec9c3 commit ddd8d29
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/formio/components/map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,15 @@ export interface MapComponentSchema
lat?: number;
lng?: number;
};
/**
* Interaction types users can use when interacting with the map.
*/
interactions?: {
circle: boolean,
polygon: boolean,
polyline: boolean,
marker: boolean,
}
/**
* If true, the backend must apply the globally configured defaults to a particular
* map instance. This results in populating `defaultZoom` and `initialCenter`, so for
Expand Down

0 comments on commit ddd8d29

Please sign in to comment.