Right now the form lets you define the fields where the geometries are stored (either in a single GeoJSON field or a pair of lat/lon fields). When adding features, if wrong geometries are found (ie wrong field values), the process will stop and an error notice will be shown.
24 lines
400 B
CSS
24 lines
400 B
CSS
.data-map-container .map {
|
|
height: 500px;
|
|
}
|
|
|
|
/**********************************************************
|
|
* Editor
|
|
*********************************************************/
|
|
|
|
.data-map-container .editor {
|
|
float: right;
|
|
width: 200px;
|
|
padding-left: 0px;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.data-map-container .editor form {
|
|
padding-left: 4px;
|
|
}
|
|
|
|
.data-map-container .editor select {
|
|
width: 100%;
|
|
}
|
|
|