Merge branch 'develop'

This commit is contained in:
Pieter Vander Vennet 2023-02-12 19:10:20 +01:00
commit 9a45ddb352
2 changed files with 26 additions and 6 deletions

View file

@ -24,7 +24,7 @@
},
"minzoom": 12,
"source": {
"osmTags": "amenity=hospital"
"osmTags": {"or": ["amenity=hospital","amenity=clinic"]}
},
"tagRenderings": [
{
@ -47,6 +47,26 @@
"key": "name"
}
},
{
"id": "inpatient",
"question": {
"en": "Does this facility admit inpatients?<br><span class='subtle'>An <i>inpatient</i> is a patient which stays for multiple days in the facility</span>"
},
"mappings": [
{
"if": "amenity=clinic",
"then": {
"en": "This is a clinic - patients can not stay overnight"
}
},
{
"if": "amenity=hospital",
"then": {
"en": "This is a hospital - patients can be admitted here for multiple days"
}
}
]
},
"phone",
"email",
"website"
@ -67,4 +87,4 @@
"width": 1
}
]
}
}