mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-15 21:48:20 +02:00
Add Screens field to Cinema preset
This commit is contained in:
@@ -1597,6 +1597,11 @@ en:
|
||||
sanitary_dump_station:
|
||||
# sanitary_dump_station=*
|
||||
label: Toilet Disposal
|
||||
screen:
|
||||
# screen=*
|
||||
label: Screens
|
||||
# screen field placeholder
|
||||
placeholder: '1, 4, 8…'
|
||||
scuba_diving:
|
||||
# 'scuba_diving:=*'
|
||||
label: Services
|
||||
|
||||
@@ -291,6 +291,7 @@
|
||||
"sac_scale": {"key": "sac_scale", "type": "combo", "label": "Hiking Difficulty", "placeholder": "Mountain Hiking, Alpine Hiking...", "strings": {"options": {"hiking": "T1: Hiking", "mountain_hiking": "T2: Mountain Hiking", "demanding_mountain_hiking": "T3: Demanding Mountain Hiking", "alpine_hiking": "T4: Alpine Hiking", "demanding_alpine_hiking": "T5: Demanding Alpine Hiking", "difficult_alpine_hiking": "T6: Difficult Alpine Hiking"}}},
|
||||
"salt": {"key": "salt", "type": "check", "label": "Salt"},
|
||||
"sanitary_dump_station": {"key": "sanitary_dump_station", "type": "check", "label": "Toilet Disposal"},
|
||||
"screen": {"key": "screen", "type": "number", "label": "Screens", "placeholder": "1, 4, 8…", "minValue": 0},
|
||||
"scuba_diving": {"key": "scuba_diving:", "type": "multiCombo", "label": "Services", "options": ["repair", "courses", "rental", "filling", "air_filling", "nitrox_filling", "trimix_filling", "oxygen_filling"]},
|
||||
"seamark/beacon_isolated_danger/shape": {"key": "seamark:beacon_isolated_danger:shape", "type": "combo", "label": "Shape"},
|
||||
"seamark/beacon_lateral/category": {"key": "seamark:beacon_lateral:category", "type": "combo", "label": "Category", "strings": {"options": {"port": "Port", "starboard": "Starboard", "waterway_left": "Waterway Left", "waterway_right": "Waterway Right", "danger_left": "Danger Left", "danger_right": "Danger Right"}}},
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"key": "screen",
|
||||
"type": "number",
|
||||
"label": "Screens",
|
||||
"placeholder": "1, 4, 8…",
|
||||
"minValue": 0
|
||||
}
|
||||
@@ -77,7 +77,7 @@
|
||||
"amenity/casino": {"icon": "maki-casino", "fields": ["name", "operator", "address", "building_area", "opening_hours", "smoking"], "moreFields": ["air_conditioning", "payment_multi", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["gambling", "roulette", "craps", "poker", "blackjack"], "tags": {"amenity": "casino"}, "name": "Casino"},
|
||||
"amenity/charging_station": {"icon": "fas-charging-station", "fields": ["name", "operator", "capacity", "fee", "payment_multi"], "geometry": ["point"], "tags": {"amenity": "charging_station"}, "terms": ["EV", "Electric Vehicle", "Supercharger"], "name": "Charging Station"},
|
||||
"amenity/childcare": {"icon": "fas-child", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "moreFields": ["payment_multi", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["daycare", "orphanage", "playgroup"], "tags": {"amenity": "childcare"}, "name": "Nursery/Childcare"},
|
||||
"amenity/cinema": {"icon": "maki-cinema", "fields": ["name", "address", "building_area", "opening_hours", "payment_multi"], "moreFields": ["air_conditioning", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["drive-in", "film", "flick", "movie", "theater", "picture", "show", "screen"], "tags": {"amenity": "cinema"}, "name": "Cinema"},
|
||||
"amenity/cinema": {"icon": "maki-cinema", "fields": ["name", "address", "screen", "building_area", "opening_hours", "payment_multi"], "moreFields": ["air_conditioning", "email", "fax", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["drive-in", "film", "flick", "movie", "theater", "picture", "show", "screen"], "tags": {"amenity": "cinema"}, "name": "Cinema"},
|
||||
"amenity/clinic": {"icon": "maki-doctor", "fields": ["name", "operator", "healthcare/speciality", "address", "building_area", "opening_hours"], "moreFields": ["air_conditioning", "payment_multi", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["medical", "urgentcare"], "tags": {"amenity": "clinic"}, "addTags": {"amenity": "clinic", "healthcare": "clinic"}, "removeTags": {"amenity": "clinic", "healthcare": "clinic"}, "reference": {"key": "amenity", "value": "clinic"}, "name": "Clinic"},
|
||||
"amenity/clinic/abortion": {"icon": "maki-hospital", "fields": ["name", "operator", "healthcare/speciality", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": [], "tags": {"amenity": "clinic", "healthcare": "clinic", "healthcare:speciality": "abortion"}, "reference": {"key": "amenity", "value": "clinic"}, "name": "Abortion Clinic"},
|
||||
"amenity/clinic/fertility": {"icon": "maki-hospital", "fields": ["name", "operator", "healthcare/speciality", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["egg", "fertility", "reproductive", "sperm", "ovulation"], "tags": {"amenity": "clinic", "healthcare": "clinic", "healthcare:speciality": "fertility"}, "reference": {"key": "amenity", "value": "clinic"}, "name": "Fertility Clinic"},
|
||||
|
||||
@@ -3,16 +3,17 @@
|
||||
"fields": [
|
||||
"name",
|
||||
"address",
|
||||
"screen",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"payment_multi"
|
||||
],
|
||||
"moreFields": [
|
||||
"air_conditioning",
|
||||
"website",
|
||||
"phone",
|
||||
"email",
|
||||
"fax",
|
||||
"phone",
|
||||
"website",
|
||||
"wheelchair"
|
||||
],
|
||||
"geometry": [
|
||||
|
||||
@@ -1487,6 +1487,7 @@
|
||||
{"key": "sac_scale", "value": "difficult_alpine_hiking", "description": "🄵 Hiking Difficulty"},
|
||||
{"key": "salt", "description": "🄵 Salt"},
|
||||
{"key": "sanitary_dump_station", "description": "🄵 Toilet Disposal"},
|
||||
{"key": "screen", "description": "🄵 Screens"},
|
||||
{"key": "scuba_diving:", "description": "🄵 Services"},
|
||||
{"key": "seamark:beacon_isolated_danger:shape", "description": "🄵 Shape"},
|
||||
{"key": "seamark:beacon_lateral:category", "value": "port", "description": "🄵 Category"},
|
||||
|
||||
Vendored
+4
@@ -3541,6 +3541,10 @@
|
||||
"sanitary_dump_station": {
|
||||
"label": "Toilet Disposal"
|
||||
},
|
||||
"screen": {
|
||||
"label": "Screens",
|
||||
"placeholder": "1, 4, 8…"
|
||||
},
|
||||
"scuba_diving": {
|
||||
"label": "Services"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user