mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-15 21:48:20 +02:00
Add highway=toll_gantry preset (close #7408)
This commit is contained in:
@@ -5499,6 +5499,11 @@ en:
|
||||
name: Tertiary Link
|
||||
# 'terms: on ramp,off ramp,ramp,road,street'
|
||||
terms: '<translate with synonyms or related terms for ''Tertiary Link'', separated by commas>'
|
||||
highway/toll_gantry:
|
||||
# highway=toll_gantry
|
||||
name: Open Road Toll
|
||||
# 'terms: license plate camera toll,cashless toll,electronic toll,free-flow toll,toll gantry,transponder toll'
|
||||
terms: '<translate with synonyms or related terms for ''Open Road Toll'', separated by commas>'
|
||||
highway/track:
|
||||
# highway=track
|
||||
name: Unmaintained Track Road
|
||||
|
||||
@@ -573,6 +573,7 @@
|
||||
"highway/street_lamp": {"icon": "temaki-street_lamp_arm", "geometry": ["point", "vertex"], "tags": {"highway": "street_lamp"}, "fields": ["lamp_type", "lamp_mount", "direction", "height", "ref"], "terms": ["streetlight", "street light", "lamp", "light", "gaslight"], "name": "Street Lamp"},
|
||||
"highway/tertiary_link": {"icon": "iD-highway-tertiary-link", "fields": ["{highway/primary_link}"], "moreFields": ["{highway/primary_link}"], "geometry": ["line"], "tags": {"highway": "tertiary_link"}, "terms": ["on ramp", "off ramp", "ramp", "road", "street"], "name": "Tertiary Link"},
|
||||
"highway/tertiary": {"icon": "iD-highway-tertiary", "fields": ["{highway/primary}"], "moreFields": ["{highway/primary}"], "geometry": ["line"], "tags": {"highway": "tertiary"}, "terms": ["road", "street"], "name": "Tertiary Road"},
|
||||
"highway/toll_gantry": {"notCountryCodes": ["de"], "icon": "temaki-height_restrictor", "fields": ["ref", "operator", "access", "maxheight", "opening_hours", "opening_hours/covid19", "payment_multi"], "moreFields": ["website"], "geometry": ["vertex"], "tags": {"highway": "toll_gantry"}, "terms": ["license plate camera toll", "cashless toll", "electronic toll", "free-flow toll", "toll gantry", "transponder toll"], "name": "Open Road Toll"},
|
||||
"highway/track": {"icon": "fas-truck-monster", "fields": ["name", "tracktype", "surface", "width", "structure", "access", "incline", "smoothness"], "moreFields": ["covered", "flood_prone", "horse_scale", "maxweight_bridge", "mtb/scale", "mtb/scale/imba", "mtb/scale/uphill", "stroller", "wheelchair"], "geometry": ["line"], "tags": {"highway": "track"}, "terms": ["woods road", "forest road", "logging road", "fire road", "farm road", "agricultural road", "ranch road", "carriage road", "primitive", "unmaintained", "rut", "offroad", "4wd", "4x4", "four wheel drive", "atv", "quad", "jeep", "double track", "two track"], "name": "Unmaintained Track Road"},
|
||||
"highway/traffic_mirror": {"icon": "maki-circle-stroked", "geometry": ["point", "vertex"], "fields": ["direction"], "tags": {"highway": "traffic_mirror"}, "terms": ["blind spot", "convex", "corner", "curved", "roadside", "round", "safety", "sphere", "visibility"], "name": "Traffic Mirror"},
|
||||
"highway/traffic_signals": {"icon": "temaki-traffic_signals", "geometry": ["vertex"], "tags": {"highway": "traffic_signals"}, "fields": ["traffic_signals", "traffic_signals/direction"], "terms": ["light", "stoplight", "traffic light"], "name": "Traffic Signals"},
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"notCountryCodes": [
|
||||
"de"
|
||||
],
|
||||
"icon": "temaki-height_restrictor",
|
||||
"fields": [
|
||||
"ref",
|
||||
"operator",
|
||||
"access",
|
||||
"maxheight",
|
||||
"opening_hours",
|
||||
"opening_hours/covid19",
|
||||
"payment_multi"
|
||||
],
|
||||
"moreFields": [
|
||||
"website"
|
||||
],
|
||||
"geometry": [
|
||||
"vertex"
|
||||
],
|
||||
"tags": {
|
||||
"highway": "toll_gantry"
|
||||
},
|
||||
"terms": [
|
||||
"license plate camera toll",
|
||||
"cashless toll",
|
||||
"electronic toll",
|
||||
"free-flow toll",
|
||||
"toll gantry",
|
||||
"transponder toll"
|
||||
],
|
||||
"name": "Open Road Toll"
|
||||
}
|
||||
@@ -556,6 +556,7 @@
|
||||
{"key": "highway", "value": "street_lamp", "description": "🄿 Street Lamp", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/street_lamp_arm.svg"},
|
||||
{"key": "highway", "value": "tertiary_link", "description": "🄿 Tertiary Link", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-tertiary-link.svg"},
|
||||
{"key": "highway", "value": "tertiary", "description": "🄿 Tertiary Road", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-tertiary.svg"},
|
||||
{"key": "highway", "value": "toll_gantry", "description": "🄿 Open Road Toll", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/height_restrictor.svg"},
|
||||
{"key": "highway", "value": "track", "description": "🄿 Unmaintained Track Road", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-truck-monster.svg"},
|
||||
{"key": "highway", "value": "traffic_mirror", "description": "🄿 Traffic Mirror", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/circle-stroked-15.svg"},
|
||||
{"key": "highway", "value": "traffic_signals", "description": "🄿 Traffic Signals", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/traffic_signals.svg"},
|
||||
|
||||
Vendored
+5
-1
@@ -7464,6 +7464,10 @@
|
||||
"name": "Tertiary Road",
|
||||
"terms": "road,street"
|
||||
},
|
||||
"highway/toll_gantry": {
|
||||
"name": "Open Road Toll",
|
||||
"terms": "license plate camera toll,cashless toll,electronic toll,free-flow toll,toll gantry,transponder toll"
|
||||
},
|
||||
"highway/track": {
|
||||
"name": "Unmaintained Track Road",
|
||||
"terms": "woods road,forest road,logging road,fire road,farm road,agricultural road,ranch road,carriage road,primitive,unmaintained,rut,offroad,4wd,4x4,four wheel drive,atv,quad,jeep,double track,two track"
|
||||
@@ -13110,4 +13114,4 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user