mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-23 08:39:56 +02:00
Add place presets (fixes #1265)
This commit is contained in:
@@ -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": ""
|
||||
|
||||
@@ -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: ""
|
||||
|
||||
@@ -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"
|
||||
},
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"icon": "square-stroked",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"place": "town"
|
||||
},
|
||||
"name": "Town"
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "square-stroked",
|
||||
"icon": "triangle",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
Reference in New Issue
Block a user