Add brand field to fuel preset (closes #2300)

This commit is contained in:
Bryan Housel
2014-07-25 10:34:51 -04:00
parent 9822cb3651
commit a988a0647d
6 changed files with 535 additions and 344 deletions
+3
View File
@@ -118,6 +118,9 @@ en:
label: Type
boundary:
label: Type
brand_fuel:
label: Brand
placeholder: "Shell, Exxon, BP..."
building:
label: Building
building_area:
+6
View File
@@ -212,6 +212,12 @@
"type": "combo",
"label": "Type"
},
"brand_fuel": {
"key": "brand",
"type": "text",
"placeholder": "Shell, Exxon, BP...",
"label": "Brand"
},
"building": {
"key": "building",
"type": "typeCombo",
+6
View File
@@ -0,0 +1,6 @@
{
"key": "brand",
"type": "text",
"placeholder": "Shell, Exxon, BP...",
"label": "Brand"
}
+513 -342
View File
File diff suppressed because it is too large Load Diff
+3 -2
View File
@@ -1,9 +1,10 @@
{
"icon": "fuel",
"fields": [
"operator",
"brand_fuel",
"address",
"building_area"
"building_area",
"operator"
],
"geometry": [
"point",
+4
View File
@@ -578,6 +578,10 @@
"boundary": {
"label": "Type"
},
"brand_fuel": {
"label": "Brand",
"placeholder": "Shell, Exxon, BP..."
},
"building": {
"label": "Building"
},