Add more generic presets

This commit is contained in:
John Firebaugh
2013-03-09 08:00:55 -08:00
parent 438fb15b69
commit 1fca7eab38
11 changed files with 189 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,20 @@
{
"name": "aeroway",
"match": {
"type": [
"point",
"vertex",
"line",
"area"
],
"tags": {
"aeroway": "*"
}
},
"form": [
{
"key": "aeroway",
"type": "combo"
}
]
}

View File

@@ -0,0 +1,18 @@
{
"name": "amenity",
"match": {
"type": [
"point",
"area"
],
"tags": {
"amenity": "*"
}
},
"form": [
{
"key": "amenity",
"type": "combo"
}
]
}

View File

@@ -0,0 +1,20 @@
{
"name": "highway",
"match": {
"type": [
"point",
"vertex",
"line",
"area"
],
"tags": {
"highway": "*"
}
},
"form": [
{
"key": "highway",
"type": "combo"
}
]
}

View File

@@ -0,0 +1,18 @@
{
"name": "landuse",
"match": {
"type": [
"point",
"area"
],
"tags": {
"landuse": "*"
}
},
"form": [
{
"key": "landuse",
"type": "combo"
}
]
}

View File

@@ -0,0 +1,18 @@
{
"name": "leisure",
"match": {
"type": [
"point",
"area"
],
"tags": {
"leisure": "*"
}
},
"form": [
{
"key": "leisure",
"type": "combo"
}
]
}

View File

@@ -0,0 +1,18 @@
{
"name": "natural",
"match": {
"type": [
"point",
"area"
],
"tags": {
"natural": "*"
}
},
"form": [
{
"key": "natural",
"type": "combo"
}
]
}

View File

@@ -0,0 +1,18 @@
{
"name": "place",
"match": {
"type": [
"point",
"area"
],
"tags": {
"place": "*"
}
},
"form": [
{
"key": "place",
"type": "combo"
}
]
}

View File

@@ -0,0 +1,20 @@
{
"name": "railway",
"match": {
"type": [
"point",
"vertex",
"line",
"area"
],
"tags": {
"railway": "*"
}
},
"form": [
{
"key": "railway",
"type": "combo"
}
]
}

View File

@@ -0,0 +1,18 @@
{
"name": "tourism",
"match": {
"type": [
"point",
"area"
],
"tags": {
"tourism": "*"
}
},
"form": [
{
"key": "tourism",
"type": "combo"
}
]
}

View File

@@ -0,0 +1,20 @@
{
"name": "waterway",
"match": {
"type": [
"point",
"vertex",
"line",
"area"
],
"tags": {
"waterway": "*"
}
},
"form": [
{
"key": "waterway",
"type": "combo"
}
]
}