mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-19 15:08:23 +02:00
Add population field for various place presets
This commit is contained in:
@@ -244,6 +244,8 @@ en:
|
||||
label: Type
|
||||
place:
|
||||
label: Type
|
||||
population:
|
||||
label: Population
|
||||
power:
|
||||
label: Type
|
||||
railway:
|
||||
|
||||
@@ -585,6 +585,11 @@
|
||||
"type": "typeCombo",
|
||||
"label": "Type"
|
||||
},
|
||||
"population": {
|
||||
"key": "population",
|
||||
"type": "text",
|
||||
"label": "Population"
|
||||
},
|
||||
"power": {
|
||||
"key": "power",
|
||||
"type": "typeCombo",
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"key": "population",
|
||||
"type": "text",
|
||||
"label": "Population"
|
||||
}
|
||||
@@ -5937,6 +5937,9 @@
|
||||
},
|
||||
"place/city": {
|
||||
"icon": "city",
|
||||
"fields": [
|
||||
"population"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
@@ -5948,6 +5951,9 @@
|
||||
},
|
||||
"place/hamlet": {
|
||||
"icon": "triangle-stroked",
|
||||
"fields": [
|
||||
"population"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
@@ -5989,6 +5995,9 @@
|
||||
},
|
||||
"place/locality": {
|
||||
"icon": "marker",
|
||||
"fields": [
|
||||
"population"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
@@ -6000,6 +6009,9 @@
|
||||
},
|
||||
"place/neighbourhood": {
|
||||
"icon": "triangle-stroked",
|
||||
"fields": [
|
||||
"population"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
@@ -6014,6 +6026,9 @@
|
||||
},
|
||||
"place/suburb": {
|
||||
"icon": "triangle-stroked",
|
||||
"fields": [
|
||||
"population"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
@@ -6029,6 +6044,9 @@
|
||||
},
|
||||
"place/town": {
|
||||
"icon": "town",
|
||||
"fields": [
|
||||
"population"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
@@ -6040,6 +6058,9 @@
|
||||
},
|
||||
"place/village": {
|
||||
"icon": "village",
|
||||
"fields": [
|
||||
"population"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
{
|
||||
"icon": "city",
|
||||
"fields": [
|
||||
"population"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
@@ -8,4 +11,4 @@
|
||||
"place": "city"
|
||||
},
|
||||
"name": "City"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
{
|
||||
"icon": "triangle-stroked",
|
||||
"fields": [
|
||||
"population"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
@@ -8,4 +11,4 @@
|
||||
"place": "hamlet"
|
||||
},
|
||||
"name": "Hamlet"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
{
|
||||
"icon": "marker",
|
||||
"fields": [
|
||||
"population"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
@@ -8,4 +11,4 @@
|
||||
"place": "locality"
|
||||
},
|
||||
"name": "Locality"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
{
|
||||
"icon": "triangle-stroked",
|
||||
"fields": [
|
||||
"population"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
{
|
||||
"icon": "triangle-stroked",
|
||||
"fields": [
|
||||
"population"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
{
|
||||
"icon": "town",
|
||||
"fields": [
|
||||
"population"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
@@ -8,4 +11,4 @@
|
||||
"place": "town"
|
||||
},
|
||||
"name": "Town"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
{
|
||||
"icon": "village",
|
||||
"fields": [
|
||||
"population"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
@@ -8,4 +11,4 @@
|
||||
"place": "village"
|
||||
},
|
||||
"name": "Village"
|
||||
}
|
||||
}
|
||||
|
||||
Vendored
+3
@@ -750,6 +750,9 @@
|
||||
"place": {
|
||||
"label": "Type"
|
||||
},
|
||||
"population": {
|
||||
"label": "Population"
|
||||
},
|
||||
"power": {
|
||||
"label": "Type"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user