mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-15 05:30:35 +02:00
Add specific highway=service presets
This commit is contained in:
@@ -467,6 +467,21 @@ en:
|
||||
highway/service:
|
||||
name: Service Road
|
||||
terms: ""
|
||||
highway/service/alley:
|
||||
name: Alley
|
||||
terms: ""
|
||||
"highway/service/drive-through":
|
||||
name: "Drive-Through"
|
||||
terms: ""
|
||||
highway/service/driveway:
|
||||
name: Driveway
|
||||
terms: ""
|
||||
highway/service/emergency_access:
|
||||
name: Emergency Access
|
||||
terms: ""
|
||||
highway/service/parking_aisle:
|
||||
name: Parking Aisle
|
||||
terms: ""
|
||||
highway/steps:
|
||||
name: Steps
|
||||
terms: "stairs,staircase"
|
||||
|
||||
@@ -1565,6 +1565,86 @@
|
||||
"terms": [],
|
||||
"name": "Service Road"
|
||||
},
|
||||
"highway/service/alley": {
|
||||
"icon": "highway-service",
|
||||
"fields": [
|
||||
"oneway",
|
||||
"access",
|
||||
"surface"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"highway": "service",
|
||||
"service": "alley"
|
||||
},
|
||||
"name": "Alley"
|
||||
},
|
||||
"highway/service/drive-through": {
|
||||
"icon": "highway-service",
|
||||
"fields": [
|
||||
"oneway",
|
||||
"access",
|
||||
"surface"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"highway": "service",
|
||||
"service": "drive-through"
|
||||
},
|
||||
"name": "Drive-Through"
|
||||
},
|
||||
"highway/service/driveway": {
|
||||
"icon": "highway-service",
|
||||
"fields": [
|
||||
"oneway",
|
||||
"access",
|
||||
"surface"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"highway": "service",
|
||||
"service": "driveway"
|
||||
},
|
||||
"name": "Driveway"
|
||||
},
|
||||
"highway/service/emergency_access": {
|
||||
"icon": "highway-service",
|
||||
"fields": [
|
||||
"oneway",
|
||||
"access",
|
||||
"surface"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"highway": "service",
|
||||
"service": "emergency_access"
|
||||
},
|
||||
"name": "Emergency Access"
|
||||
},
|
||||
"highway/service/parking_aisle": {
|
||||
"icon": "highway-service",
|
||||
"fields": [
|
||||
"oneway",
|
||||
"access",
|
||||
"surface"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"highway": "service",
|
||||
"service": "parking_aisle"
|
||||
},
|
||||
"name": "Parking Aisle"
|
||||
},
|
||||
"highway/steps": {
|
||||
"fields": [
|
||||
"access",
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"icon": "highway-service",
|
||||
"fields": [
|
||||
"oneway",
|
||||
"access",
|
||||
"surface"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"highway": "service",
|
||||
"service": "alley"
|
||||
},
|
||||
"name": "Alley"
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"icon": "highway-service",
|
||||
"fields": [
|
||||
"oneway",
|
||||
"access",
|
||||
"surface"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"highway": "service",
|
||||
"service": "drive-through"
|
||||
},
|
||||
"name": "Drive-Through"
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"icon": "highway-service",
|
||||
"fields": [
|
||||
"oneway",
|
||||
"access",
|
||||
"surface"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"highway": "service",
|
||||
"service": "driveway"
|
||||
},
|
||||
"name": "Driveway"
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"icon": "highway-service",
|
||||
"fields": [
|
||||
"oneway",
|
||||
"access",
|
||||
"surface"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"highway": "service",
|
||||
"service": "emergency_access"
|
||||
},
|
||||
"name": "Emergency Access"
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"icon": "highway-service",
|
||||
"fields": [
|
||||
"oneway",
|
||||
"access",
|
||||
"surface"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"highway": "service",
|
||||
"service": "parking_aisle"
|
||||
},
|
||||
"name": "Parking Aisle"
|
||||
}
|
||||
Vendored
+20
@@ -961,6 +961,26 @@
|
||||
"name": "Service Road",
|
||||
"terms": ""
|
||||
},
|
||||
"highway/service/alley": {
|
||||
"name": "Alley",
|
||||
"terms": ""
|
||||
},
|
||||
"highway/service/drive-through": {
|
||||
"name": "Drive-Through",
|
||||
"terms": ""
|
||||
},
|
||||
"highway/service/driveway": {
|
||||
"name": "Driveway",
|
||||
"terms": ""
|
||||
},
|
||||
"highway/service/emergency_access": {
|
||||
"name": "Emergency Access",
|
||||
"terms": ""
|
||||
},
|
||||
"highway/service/parking_aisle": {
|
||||
"name": "Parking Aisle",
|
||||
"terms": ""
|
||||
},
|
||||
"highway/steps": {
|
||||
"name": "Steps",
|
||||
"terms": "stairs,staircase"
|
||||
|
||||
Reference in New Issue
Block a user