Merge branch 'develop' into feature/maproulette
This commit is contained in:
commit
98d6806449
3 changed files with 21 additions and 7 deletions
|
@ -102,7 +102,17 @@ export interface MappingConfigJson {
|
|||
|
||||
/**
|
||||
* If chosen as answer, these tags will be applied as well onto the object.
|
||||
* Not compatible with multiAnswer
|
||||
* Not compatible with multiAnswer.
|
||||
*
|
||||
* This can be used e.g. to erase other keys which indicate the 'not' value:
|
||||
*```json
|
||||
* {
|
||||
* "if": "crossing:marking=rainbow",
|
||||
* "then": "This is a rainbow crossing",
|
||||
* "addExtraTags": "not:crossing:marking="
|
||||
* }
|
||||
* ```
|
||||
*
|
||||
*/
|
||||
addExtraTags?: string[]
|
||||
|
||||
|
|
|
@ -154,6 +154,7 @@
|
|||
},
|
||||
{
|
||||
"id": "toilets-fee",
|
||||
"condition": "access!=no",
|
||||
"question": {
|
||||
"en": "Are these toilets free to use?",
|
||||
"de": "Können diese Toiletten kostenlos benutzt werden?",
|
||||
|
@ -220,6 +221,7 @@
|
|||
},
|
||||
{
|
||||
"id": "Opening-hours",
|
||||
"condition": "access!=no",
|
||||
"question": {
|
||||
"en": "When are these toilets opened?",
|
||||
"nl": "Wanneer zijn deze toiletten open?",
|
||||
|
|
|
@ -20,6 +20,14 @@
|
|||
"widenFactor": 2,
|
||||
"hideFromOverview": false,
|
||||
"layers": [
|
||||
{
|
||||
"builtin": "indoors",
|
||||
"override": {
|
||||
"minzoom": 19,
|
||||
"name": null,
|
||||
"passAllFeatures": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"builtin": "bike_repair_station",
|
||||
"override": {
|
||||
|
@ -380,12 +388,6 @@
|
|||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"builtin": "indoors",
|
||||
"override": {
|
||||
"minzoom": 19
|
||||
}
|
||||
},
|
||||
{
|
||||
"builtin": "current_view",
|
||||
"override": {
|
||||
|
|
Loading…
Reference in a new issue