Add support for junction=circular (same as junction=roundabout)

(closes #4637)
This commit is contained in:
Bryan Housel
2018-01-02 13:27:11 -05:00
parent a20d26fc9b
commit 9f1b71bb7e
7 changed files with 42 additions and 0 deletions
+3
View File
@@ -2625,6 +2625,9 @@ en:
name: Camp Pitch
# 'terms: tent,rv'
terms: '<translate with synonyms or related terms for ''Camp Pitch'', separated by commas>'
circular:
# junction=circular
name: Traffic Circle
club:
# club=*
name: Club
+14
View File
@@ -52,6 +52,20 @@
"searchable": false,
"name": "Amenity"
},
"circular": {
"geometry": [
"vertex",
"line"
],
"fields": [
"name"
],
"tags": {
"junction": "circular"
},
"name": "Traffic Circle",
"searchable": false
},
"highway": {
"fields": [
"name",
+14
View File
@@ -0,0 +1,14 @@
{
"geometry": [
"vertex",
"line"
],
"fields": [
"name"
],
"tags": {
"junction": "circular"
},
"name": "Traffic Circle",
"searchable": false
}
+4
View File
@@ -21,6 +21,10 @@
{
"key": "amenity"
},
{
"key": "junction",
"value": "circular"
},
{
"key": "highway"
},