forked from MapComplete/MapComplete
Merge pull request 'add fee filter and toilets=*' (#2316) from Osmwithspace/MapComplete:layer_campsite into develop
Reviewed-on: MapComplete/MapComplete#2316
This commit is contained in:
commit
e130629a70
1 changed files with 54 additions and 3 deletions
|
@ -71,6 +71,7 @@
|
|||
}
|
||||
],
|
||||
"tagRenderings": [
|
||||
"images",
|
||||
{
|
||||
"question": {
|
||||
"de": "Ist dieser Zeltplatz ausschließlich für Gruppen?",
|
||||
|
@ -121,6 +122,7 @@
|
|||
},
|
||||
"id": "name"
|
||||
},
|
||||
"contact",
|
||||
{
|
||||
"id": "fee",
|
||||
"question": {
|
||||
|
@ -186,12 +188,31 @@
|
|||
},
|
||||
"id": "capacity_persons"
|
||||
},
|
||||
"contact",
|
||||
"caravansites.caravansites-toilets",
|
||||
"questions",
|
||||
"mastodon",
|
||||
"images"
|
||||
"mastodon"
|
||||
],
|
||||
"filter": [
|
||||
{
|
||||
"id": "fee_filter",
|
||||
"options": [
|
||||
{
|
||||
"question": {
|
||||
"en": "Fee"
|
||||
}
|
||||
},
|
||||
{
|
||||
"question": {
|
||||
"en": "free of charge"
|
||||
},
|
||||
"osmTags": {
|
||||
"and": [
|
||||
"fee=no"
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "capacity_persons_filter",
|
||||
"options": [
|
||||
|
@ -284,6 +305,36 @@
|
|||
"osmTags": "capacity:persons="
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "toilets_filter",
|
||||
"options": [
|
||||
{
|
||||
"question": {
|
||||
"en": "Toilets"
|
||||
}
|
||||
},
|
||||
{
|
||||
"question": {
|
||||
"en": "Toilets are available."
|
||||
},
|
||||
"osmTags": {
|
||||
"and": [
|
||||
"toilets=yes"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"question": {
|
||||
"en": "There are no toilets."
|
||||
},
|
||||
"osmTags": {
|
||||
"and": [
|
||||
"toilets=no"
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"allowMove": false,
|
||||
|
|
Loading…
Add table
Reference in a new issue