Merge pull request #2063 from bhousel/add_tunnel_to_waterway

add "Tunnel" field for waterways.
This commit is contained in:
John Firebaugh
2013-12-18 09:17:30 -08:00
11 changed files with 44 additions and 7 deletions

View File

@@ -306,6 +306,8 @@ en:
label: Trail Visibility
tree_type:
label: Type
tunnel:
label: Tunnel
vending:
label: Type of Goods
water:

View File

@@ -128,7 +128,8 @@
"waterway/river",
"waterway/stream",
"waterway/canal",
"waterway/ditch"
"waterway/ditch",
"waterway/drain"
]
}
}

View File

@@ -6,6 +6,7 @@
"waterway/river",
"waterway/stream",
"waterway/canal",
"waterway/ditch"
"waterway/ditch",
"waterway/drain"
]
}
}

View File

@@ -761,6 +761,11 @@
],
"label": "Type"
},
"tunnel": {
"key": "tunnel",
"type": "combo",
"label": "Tunnel"
},
"vending": {
"key": "vending",
"type": "combo",

View File

@@ -0,0 +1,5 @@
{
"key": "tunnel",
"type": "combo",
"label": "Tunnel"
}

View File

@@ -7235,6 +7235,9 @@
},
"waterway/ditch": {
"icon": "waterway-ditch",
"fields": [
"tunnel"
],
"geometry": [
"line"
],
@@ -7245,6 +7248,9 @@
},
"waterway/drain": {
"icon": "waterway-stream",
"fields": [
"tunnel"
],
"geometry": [
"line"
],
@@ -7255,6 +7261,9 @@
},
"waterway/river": {
"icon": "waterway-river",
"fields": [
"tunnel"
],
"geometry": [
"line"
],
@@ -7291,7 +7300,8 @@
"waterway/stream": {
"icon": "waterway-stream",
"fields": [
"layer"
"layer",
"tunnel"
],
"geometry": [
"line"

View File

@@ -1,5 +1,8 @@
{
"icon": "waterway-ditch",
"fields": [
"tunnel"
],
"geometry": [
"line"
],

View File

@@ -1,5 +1,8 @@
{
"icon": "waterway-stream",
"fields": [
"tunnel"
],
"geometry": [
"line"
],
@@ -7,4 +10,4 @@
"waterway": "drain"
},
"name": "Drain"
}
}

View File

@@ -1,5 +1,8 @@
{
"icon": "waterway-river",
"fields": [
"tunnel"
],
"geometry": [
"line"
],
@@ -22,4 +25,4 @@
"waterway": "river"
},
"name": "River"
}
}

View File

@@ -1,7 +1,8 @@
{
"icon": "waterway-stream",
"fields": [
"layer"
"layer",
"tunnel"
],
"geometry": [
"line"

View File

@@ -834,6 +834,9 @@
"tree_type": {
"label": "Type"
},
"tunnel": {
"label": "Tunnel"
},
"vending": {
"label": "Type of Goods"
},