mirror of
https://github.com/FoggedLens/iD.git
synced 2026-04-21 11:16:36 +02:00
Add Orthodontist preset (close #7575)
This commit is contained in:
@@ -4986,6 +4986,11 @@ en:
|
||||
# healthcare=counselling
|
||||
name: Counselling Center
|
||||
terms: '<translate with synonyms or related terms for ''Counselling Center'', separated by commas>'
|
||||
healthcare/dentist/orthodontics:
|
||||
# 'healthcare=dentist, healthcare:speciality=orthodontics'
|
||||
name: Orthodontist
|
||||
# 'terms: braces,dentistry,dentofacial orthopedics,headgear,jaw alignment,teeth,tooth'
|
||||
terms: '<translate with synonyms or related terms for ''Orthodontist'', separated by commas>'
|
||||
healthcare/hospice:
|
||||
# healthcare=hospice
|
||||
name: Hospice
|
||||
|
||||
@@ -485,6 +485,7 @@
|
||||
"healthcare/birthing_center": {"icon": "fas-baby", "geometry": ["point", "area"], "terms": ["baby", "childbirth", "delivery", "labour", "labor", "pregnancy"], "tags": {"healthcare": "birthing_center"}, "name": "Birthing Center"},
|
||||
"healthcare/blood_donation": {"icon": "maki-blood-bank", "fields": ["{healthcare}", "blood_components"], "geometry": ["point", "area"], "terms": ["blood bank", "blood donation", "blood transfusion", "apheresis", "plasmapheresis", "plateletpheresis", "stem cell donation"], "tags": {"healthcare": "blood_donation"}, "name": "Blood Donor Center"},
|
||||
"healthcare/counselling": {"icon": "fas-comments", "geometry": ["point", "area"], "tags": {"healthcare": "counselling"}, "name": "Counselling Center"},
|
||||
"healthcare/dentist/orthodontics": {"icon": "fas-teeth", "fields": ["{amenity/dentist}"], "moreFields": ["{amenity/dentist}"], "geometry": ["point", "area"], "terms": ["braces", "dentistry", "dentofacial orthopedics", "headgear", "jaw alignment", "teeth", "tooth"], "tags": {"healthcare": "dentist", "healthcare:speciality": "orthodontics"}, "addTags": {"healthcare": "dentist", "amenity": "dentist", "healthcare:speciality": "orthodontics"}, "reference": {"key": "healthcare:speciality", "value": "orthodontics"}, "name": "Orthodontist"},
|
||||
"healthcare/hospice": {"icon": "maki-hospital", "geometry": ["point", "area"], "terms": ["terminal", "illness"], "tags": {"healthcare": "hospice"}, "name": "Hospice"},
|
||||
"healthcare/laboratory": {"icon": "fas-vial", "fields": ["name", "operator", "website", "ref", "address", "opening_hours", "opening_hours/covid19"], "geometry": ["point", "area"], "terms": ["medical_laboratory", "medical_lab", "blood_check"], "tags": {"healthcare": "laboratory"}, "name": "Medical Laboratory"},
|
||||
"healthcare/midwife": {"icon": "fas-baby", "geometry": ["point", "area"], "terms": ["baby", "childbirth", "delivery", "labour", "labor", "pregnancy"], "tags": {"healthcare": "midwife"}, "name": "Midwife"},
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"icon": "fas-teeth",
|
||||
"fields": [
|
||||
"{amenity/dentist}"
|
||||
],
|
||||
"moreFields": [
|
||||
"{amenity/dentist}"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"braces",
|
||||
"dentistry",
|
||||
"dentofacial orthopedics",
|
||||
"headgear",
|
||||
"jaw alignment",
|
||||
"teeth",
|
||||
"tooth"
|
||||
],
|
||||
"tags": {
|
||||
"healthcare": "dentist",
|
||||
"healthcare:speciality": "orthodontics"
|
||||
},
|
||||
"addTags": {
|
||||
"healthcare": "dentist",
|
||||
"amenity": "dentist",
|
||||
"healthcare:speciality": "orthodontics"
|
||||
},
|
||||
"reference": {
|
||||
"key": "healthcare:speciality",
|
||||
"value": "orthodontics"
|
||||
},
|
||||
"name": "Orthodontist"
|
||||
}
|
||||
@@ -481,6 +481,7 @@
|
||||
{"key": "healthcare", "value": "birthing_center", "description": "🄿 Birthing Center", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-baby.svg"},
|
||||
{"key": "healthcare", "value": "blood_donation", "description": "🄿 Blood Donor Center", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/blood-bank-15.svg"},
|
||||
{"key": "healthcare", "value": "counselling", "description": "🄿 Counselling Center", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-comments.svg"},
|
||||
{"key": "healthcare:speciality", "value": "orthodontics", "description": "🄿 Orthodontist", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-teeth.svg"},
|
||||
{"key": "healthcare", "value": "hospice", "description": "🄿 Hospice", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"},
|
||||
{"key": "healthcare", "value": "laboratory", "description": "🄿 Medical Laboratory", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vial.svg"},
|
||||
{"key": "healthcare", "value": "midwife", "description": "🄿 Midwife", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-baby.svg"},
|
||||
|
||||
Vendored
+4
@@ -6875,6 +6875,10 @@
|
||||
"name": "Counselling Center",
|
||||
"terms": ""
|
||||
},
|
||||
"healthcare/dentist/orthodontics": {
|
||||
"name": "Orthodontist",
|
||||
"terms": "braces,dentistry,dentofacial orthopedics,headgear,jaw alignment,teeth,tooth"
|
||||
},
|
||||
"healthcare/hospice": {
|
||||
"name": "Hospice",
|
||||
"terms": "terminal,illness"
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="teeth" class="svg-inline--fa fa-teeth fa-w-20" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><path fill="currentColor" d="M544 0H96C42.98 0 0 42.98 0 96v320c0 53.02 42.98 96 96 96h448c53.02 0 96-42.98 96-96V96c0-53.02-42.98-96-96-96zM160 368c0 26.51-21.49 48-48 48s-48-21.49-48-48v-64c0-8.84 7.16-16 16-16h64c8.84 0 16 7.16 16 16v64zm0-128c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-64c0-26.51 21.49-48 48-48s48 21.49 48 48v64zm144 120c0 30.93-25.07 56-56 56s-56-25.07-56-56v-56c0-8.84 7.16-16 16-16h80c8.84 0 16 7.16 16 16v56zm0-120c0 8.84-7.16 16-16 16h-80c-8.84 0-16-7.16-16-16v-88c0-30.93 25.07-56 56-56s56 25.07 56 56v88zm144 120c0 30.93-25.07 56-56 56s-56-25.07-56-56v-56c0-8.84 7.16-16 16-16h80c8.84 0 16 7.16 16 16v56zm0-120c0 8.84-7.16 16-16 16h-80c-8.84 0-16-7.16-16-16v-88c0-30.93 25.07-56 56-56s56 25.07 56 56v88zm128 128c0 26.51-21.49 48-48 48s-48-21.49-48-48v-64c0-8.84 7.16-16 16-16h64c8.84 0 16 7.16 16 16v64zm0-128c0 8.84-7.16 16-16 16h-64c-8.84 0-16-7.16-16-16v-64c0-26.51 21.49-48 48-48s48 21.49 48 48v64z"></path></svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
Reference in New Issue
Block a user