diff --git a/assets/layers/hospital/hospital.json b/assets/layers/hospital/hospital.json
index 144490447..d488fccfd 100644
--- a/assets/layers/hospital/hospital.json
+++ b/assets/layers/hospital/hospital.json
@@ -22,7 +22,7 @@
},
"minzoom": 12,
"source": {
- "osmTags": "amenity=hospital"
+ "osmTags": {"or": ["amenity=hospital","amenity=clinic"]}
},
"tagRenderings": [
{
@@ -43,6 +43,26 @@
"key": "name"
}
},
+ {
+ "id": "inpatient",
+ "question": {
+ "en": "Does this facility admit inpatients?
An inpatient is a patient which stays for multiple days in the facility"
+ },
+ "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"
@@ -63,4 +83,4 @@
"width": 1
}
]
-}
\ No newline at end of file
+}