Add place presets (fixes #1265)

This commit is contained in:
John Firebaugh
2013-04-06 11:01:35 -07:00
parent a8f41b8c57
commit 4234b864fd
7 changed files with 87 additions and 2 deletions
+12
View File
@@ -1162,6 +1162,10 @@ locale.en = {
"name": "Place",
"terms": ""
},
"place/city": {
"name": "City",
"terms": ""
},
"place/hamlet": {
"name": "Hamlet",
"terms": ""
@@ -1170,10 +1174,18 @@ locale.en = {
"name": "Island",
"terms": "archipelago,atoll,bar,cay,isle,islet,key,reef"
},
"place/isolated_dwelling": {
"name": "Isolated Dwelling",
"terms": ""
},
"place/locality": {
"name": "Locality",
"terms": ""
},
"place/town": {
"name": "Town",
"terms": ""
},
"place/village": {
"name": "Village",
"terms": ""
+9
View File
@@ -619,15 +619,24 @@ en:
place:
name: Place
terms: ""
place/city:
name: City
terms: ""
place/hamlet:
name: Hamlet
terms: ""
place/island:
name: Island
terms: "archipelago,atoll,bar,cay,isle,islet,key,reef"
place/isolated_dwelling:
name: Isolated Dwelling
terms: ""
place/locality:
name: Locality
terms: ""
place/town:
name: Town
terms: ""
place/village:
name: Village
terms: ""
+33 -1
View File
@@ -2483,6 +2483,17 @@
},
"name": "Place"
},
"place/city": {
"icon": "square",
"geometry": [
"point",
"area"
],
"tags": {
"place": "city"
},
"name": "City"
},
"place/hamlet": {
"icon": "triangle-stroked",
"geometry": [
@@ -2514,6 +2525,16 @@
},
"name": "Island"
},
"place/isolated_dwelling": {
"geometry": [
"point",
"area"
],
"tags": {
"place": "isolated_dwelling"
},
"name": "Isolated Dwelling"
},
"place/locality": {
"icon": "marker",
"geometry": [
@@ -2525,12 +2546,23 @@
},
"name": "Locality"
},
"place/village": {
"place/town": {
"icon": "square-stroked",
"geometry": [
"point",
"area"
],
"tags": {
"place": "town"
},
"name": "Town"
},
"place/village": {
"icon": "triangle",
"geometry": [
"point",
"area"
],
"tags": {
"place": "village"
},
+11
View File
@@ -0,0 +1,11 @@
{
"icon": "square",
"geometry": [
"point",
"area"
],
"tags": {
"place": "city"
},
"name": "City"
}
@@ -0,0 +1,10 @@
{
"geometry": [
"point",
"area"
],
"tags": {
"place": "isolated_dwelling"
},
"name": "Isolated Dwelling"
}
+11
View File
@@ -0,0 +1,11 @@
{
"icon": "square-stroked",
"geometry": [
"point",
"area"
],
"tags": {
"place": "town"
},
"name": "Town"
}
+1 -1
View File
@@ -1,5 +1,5 @@
{
"icon": "square-stroked",
"icon": "triangle",
"geometry": [
"point",
"area"