Merge pull request #5092 from vershwal/motorway

Added name field to motorway_junction
This commit is contained in:
Bryan Housel
2018-06-19 07:37:05 -04:00
committed by GitHub
2 changed files with 3 additions and 2 deletions

View File

@@ -364,7 +364,7 @@
"highway/give_way": {"icon": "temaki-yield", "fields": ["direction_vertex"], "geometry": ["vertex"], "tags": {"highway": "give_way"}, "terms": ["give way", "yield", "sign"], "name": "Yield Sign"},
"highway/living_street": {"icon": "iD-highway-living-street", "fields": ["name", "oneway", "maxspeed", "lanes", "surface", "structure", "maxheight", "access", "cycleway"], "geometry": ["line"], "tags": {"highway": "living_street"}, "name": "Living Street"},
"highway/mini_roundabout": {"icon": "maki-circle-stroked", "geometry": ["vertex"], "tags": {"highway": "mini_roundabout"}, "fields": ["direction_clock"], "name": "Mini-Roundabout"},
"highway/motorway_junction": {"icon": "temaki-junction", "geometry": ["vertex"], "tags": {"highway": "motorway_junction"}, "fields": ["ref_highway_junction"], "name": "Motorway Junction / Exit"},
"highway/motorway_junction": {"icon": "temaki-junction", "geometry": ["vertex"], "tags": {"highway": "motorway_junction"}, "fields": ["ref_highway_junction", "name"], "name": "Motorway Junction / Exit"},
"highway/motorway_link": {"icon": "iD-highway-motorway-link", "fields": ["name", "ref_road_number", "oneway", "maxspeed", "maxspeed/advisory", "lanes", "surface", "structure", "maxheight", "access"], "geometry": ["line"], "tags": {"highway": "motorway_link"}, "addTags": {"highway": "motorway_link", "oneway": "yes"}, "removeTags": {"highway": "motorway_link", "oneway": "yes"}, "terms": ["ramp", "on ramp", "off ramp"], "name": "Motorway Link"},
"highway/motorway": {"icon": "iD-highway-motorway", "fields": ["name", "ref_road_number", "oneway_yes", "maxspeed", "lanes", "surface", "structure", "maxheight", "toll", "access"], "geometry": ["line"], "tags": {"highway": "motorway"}, "terms": ["autobahn", "expressway", "freeway", "highway", "interstate", "parkway", "thruway", "turnpike"], "name": "Motorway"},
"highway/passing_place": {"icon": "maki-circle-stroked", "geometry": ["vertex"], "tags": {"highway": "passing_place"}, "terms": ["turnout, pullout"], "name": "Passing Place"},

View File

@@ -7,7 +7,8 @@
"highway": "motorway_junction"
},
"fields": [
"ref_highway_junction"
"ref_highway_junction",
"name"
],
"name": "Motorway Junction / Exit"
}