diff --git a/components/src/components/Map/editForm/Component.edit.data.ts b/components/src/components/Map/editForm/Component.edit.data.ts index 5ef215b42..171ecf627 100644 --- a/components/src/components/Map/editForm/Component.edit.data.ts +++ b/components/src/components/Map/editForm/Component.edit.data.ts @@ -21,6 +21,14 @@ export default { 'This will be the value for this field, before user interaction.', input: true, }, + { + label: 'How many Markers per Submission?', + key: 'numPoints', + type: 'simplenumber', + defaultValue: 1, + input: true, + }, + { label: 'Default Zoom Level', description: @@ -78,6 +86,10 @@ export default { 'Add circular area of interest through a point and custom radius', value: 'circle', }, + { + label: 'Add a polygon', + value: 'polygon', + }, ], defaultValue: 'marker', key: 'markerType', diff --git a/components/src/components/Map/editForm/Component.edit.display.ts b/components/src/components/Map/editForm/Component.edit.display.ts index 5dd2fc6e6..6072f1634 100644 --- a/components/src/components/Map/editForm/Component.edit.display.ts +++ b/components/src/components/Map/editForm/Component.edit.display.ts @@ -59,35 +59,5 @@ export default { tooltip: 'Assign one or more CSS class names to customize the appearance of this component.', }, - - // { - // // You can ignore existing fields. - // key: 'placeholder', - // ignore: true, - // }, - // { - // key: 'tableView', - // ignore: true, - // }, - // { - // key: 'hidden', - // ignore: true, - // }, - // { - // key: 'autofocus', - // ignore: true, - // }, - // { - // key: 'tabindex', - // ignore: true, - // }, - // { - // key: 'modalEdit', - // ignore: true, - // }, - // { - // key: 'disabled', - // ignore: true, - // }, ], };