Add dispensing field to amenity=pharmacy preset

(closes #4763)
This commit is contained in:
Bryan Housel
2018-02-03 23:19:26 -05:00
parent d7bd3c6768
commit 42dd36addb
6 changed files with 354 additions and 168 deletions

View File

@@ -484,6 +484,9 @@ en:
both: Both / All
# direction=forward
forward: Forward
dispensing:
# dispensing=*
label: Dispenses Prescriptions
display:
# display=*
label: Display

View File

@@ -649,6 +649,12 @@
"label": "Direction (Degrees Clockwise)",
"placeholder": "45, 90, 180, 270"
},
"dispensing": {
"key": "dispensing",
"type": "check",
"label": "Dispenses Prescriptions",
"default": "yes"
},
"display": {
"key": "display",
"type": "combo",

View File

@@ -0,0 +1,6 @@
{
"key": "dispensing",
"type": "check",
"label": "Dispenses Prescriptions",
"default": "yes"
}

File diff suppressed because it is too large Load Diff

View File

@@ -7,7 +7,8 @@
"building_area",
"drive_through",
"opening_hours",
"payment_multi"
"payment_multi",
"dispensing"
],
"geometry": [
"point",

View File

@@ -1697,6 +1697,9 @@
"label": "Direction (Degrees Clockwise)",
"placeholder": "45, 90, 180, 270"
},
"dispensing": {
"label": "Dispenses Prescriptions"
},
"display": {
"label": "Display"
},