Add missing content folder

This commit is contained in:
Daniel Lautzenheiser
2022-09-30 11:39:35 -04:00
parent eaef0286be
commit 6015d2be44
57 changed files with 6093 additions and 1 deletions

View File

@ -0,0 +1,19 @@
---
title: map
label: Map
---
The map widget allows you to edit spatial data using an interactive map. Spatial data for a single piece of geometry saves as a GeoJSON string in WGS84 projection.
* **Name:** `map`
* **UI:** interactive map
* **Data type:** GeoJSON string
* **Options:**
* `decimals`: accepts a number to specify precision of saved coordinates; defaults to 7 decimals
* `default`: accepts a GeoJSON string containing a single geometry; defaults to an empty string
* `type`: accepts one string value of `Point`, `LineString` or `Polygon`; defaults to `Point`
* **Example:**
```yaml
- {label: "Location", name: "location", widget: "map" }
```