Themes: add validation check if a mapping does not erase another mapping completely

This commit is contained in:
Pieter Vander Vennet 2023-11-09 15:42:15 +01:00
parent 7d43bb5983
commit 556f6d0b93
43 changed files with 5015 additions and 4778 deletions

View file

@ -116,7 +116,7 @@ export interface LayoutConfigJson {
* type: float
* group: start_location
*/
startZoom: number
startZoom?: number
/**
* question: At what start latitude should this theme open?
* Default location and zoom to start.
@ -125,7 +125,7 @@ export interface LayoutConfigJson {
* type: float
* group: start_location
*/
startLat: number
startLat?: number
/**
* question: At what start longitude should this theme open?
* Default location and zoom to start.
@ -134,7 +134,7 @@ export interface LayoutConfigJson {
* type: float
* group: start_location
*/
startLon: number
startLon?: number
/**
* The id of the default background. BY default: vanilla OSM
*/