mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-16 13:59:27 +02:00
Add presets for gas station fuel types, EV charging station.
This commit is contained in:
@@ -149,6 +149,24 @@ en:
|
||||
label: Fix Me
|
||||
fuel:
|
||||
label: Fuel
|
||||
fuel/biodiesel:
|
||||
label: Sells Biodiesel
|
||||
fuel/diesel:
|
||||
label: Sells Diesel
|
||||
fuel/e10:
|
||||
label: Sells E10
|
||||
fuel/e85:
|
||||
label: Sells E85
|
||||
fuel/lpg:
|
||||
label: Sells Propane
|
||||
fuel/octane_100:
|
||||
label: Sells Racing Gasoline
|
||||
fuel/octane_91:
|
||||
label: Sells Regular Gasoline
|
||||
fuel/octane_95:
|
||||
label: Sells Midgrade Gasoline
|
||||
fuel/octane_98:
|
||||
label: Sells Premium Gasoline
|
||||
gauge:
|
||||
label: Gauge
|
||||
generator/method:
|
||||
@@ -459,6 +477,9 @@ en:
|
||||
amenity/car_wash:
|
||||
name: Car Wash
|
||||
terms: "<translate with synonyms or related terms for 'Car Wash', separated by commas>"
|
||||
amenity/charging_station:
|
||||
name: Charging Station
|
||||
terms: "<translate with synonyms or related terms for 'Charging Station', separated by commas>"
|
||||
amenity/childcare:
|
||||
name: Childcare
|
||||
terms: "<translate with synonyms or related terms for 'Childcare', separated by commas>"
|
||||
@@ -474,6 +495,9 @@ en:
|
||||
amenity/college:
|
||||
name: College
|
||||
terms: "<translate with synonyms or related terms for 'College', separated by commas>"
|
||||
amenity/compressed_air:
|
||||
name: Compressed Air
|
||||
terms: "<translate with synonyms or related terms for 'Compressed Air', separated by commas>"
|
||||
amenity/courthouse:
|
||||
name: Courthouse
|
||||
terms: "<translate with synonyms or related terms for 'Courthouse', separated by commas>"
|
||||
|
||||
@@ -346,6 +346,51 @@
|
||||
"type": "combo",
|
||||
"label": "Fuel"
|
||||
},
|
||||
"fuel/biodiesel": {
|
||||
"key": "fuel:biodiesel",
|
||||
"type": "check",
|
||||
"label": "Sells Biodiesel"
|
||||
},
|
||||
"fuel/diesel": {
|
||||
"key": "fuel:diesel",
|
||||
"type": "check",
|
||||
"label": "Sells Diesel"
|
||||
},
|
||||
"fuel/e10": {
|
||||
"key": "fuel:e10",
|
||||
"type": "check",
|
||||
"label": "Sells E10"
|
||||
},
|
||||
"fuel/e85": {
|
||||
"key": "fuel:e85",
|
||||
"type": "check",
|
||||
"label": "Sells E85"
|
||||
},
|
||||
"fuel/lpg": {
|
||||
"key": "fuel:lpg",
|
||||
"type": "check",
|
||||
"label": "Sells Propane"
|
||||
},
|
||||
"fuel/octane_100": {
|
||||
"key": "fuel:octane_100",
|
||||
"type": "check",
|
||||
"label": "Sells Racing Gasoline"
|
||||
},
|
||||
"fuel/octane_91": {
|
||||
"key": "fuel:octane_91",
|
||||
"type": "check",
|
||||
"label": "Sells Regular Gasoline"
|
||||
},
|
||||
"fuel/octane_95": {
|
||||
"key": "fuel:octane_95",
|
||||
"type": "check",
|
||||
"label": "Sells Midgrade Gasoline"
|
||||
},
|
||||
"fuel/octane_98": {
|
||||
"key": "fuel:octane_98",
|
||||
"type": "check",
|
||||
"label": "Sells Premium Gasoline"
|
||||
},
|
||||
"gauge": {
|
||||
"key": "gauge",
|
||||
"type": "combo",
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"key": "fuel:biodiesel",
|
||||
"type": "check",
|
||||
"label": "Sells Biodiesel"
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"key": "fuel:diesel",
|
||||
"type": "check",
|
||||
"label": "Sells Diesel"
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"key": "fuel:e10",
|
||||
"type": "check",
|
||||
"label": "Sells E10"
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"key": "fuel:e85",
|
||||
"type": "check",
|
||||
"label": "Sells E85"
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"key": "fuel:lpg",
|
||||
"type": "check",
|
||||
"label": "Sells Propane"
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"key": "fuel:octane_100",
|
||||
"type": "check",
|
||||
"label": "Sells Racing Gasoline"
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"key": "fuel:octane_91",
|
||||
"type": "check",
|
||||
"label": "Sells Regular Gasoline"
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"key": "fuel:octane_95",
|
||||
"type": "check",
|
||||
"label": "Sells Midgrade Gasoline"
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"key": "fuel:octane_98",
|
||||
"type": "check",
|
||||
"label": "Sells Premium Gasoline"
|
||||
}
|
||||
+1927
-213
File diff suppressed because it is too large
Load Diff
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"icon": "car",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"icon": "car",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "charging_station"
|
||||
},
|
||||
"fields": [
|
||||
"operator"
|
||||
],
|
||||
"terms": [
|
||||
"EV",
|
||||
"Electric Vehicle",
|
||||
"Supercharger"
|
||||
],
|
||||
"name": "Charging Station"
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"icon": "car",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "compressed_air"
|
||||
},
|
||||
"name": "Compressed Air"
|
||||
}
|
||||
@@ -3,7 +3,16 @@
|
||||
"fields": [
|
||||
"operator",
|
||||
"address",
|
||||
"building_area"
|
||||
"building_area",
|
||||
"fuel/octane_91",
|
||||
"fuel/octane_95",
|
||||
"fuel/octane_98",
|
||||
"fuel/e85",
|
||||
"fuel/e10",
|
||||
"fuel/diesel",
|
||||
"fuel/biodiesel",
|
||||
"fuel/lpg",
|
||||
"fuel/octane_100"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "shop",
|
||||
"icon": "car",
|
||||
"fields": [
|
||||
"address",
|
||||
"building_area",
|
||||
@@ -14,4 +14,4 @@
|
||||
"shop": "car_parts"
|
||||
},
|
||||
"name": "Car Parts Store"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "shop",
|
||||
"icon": "car",
|
||||
"fields": [
|
||||
"address",
|
||||
"building_area",
|
||||
@@ -14,4 +14,4 @@
|
||||
"shop": "car_repair"
|
||||
},
|
||||
"name": "Car Repair Shop"
|
||||
}
|
||||
}
|
||||
|
||||
Vendored
+35
@@ -614,6 +614,33 @@
|
||||
"fuel": {
|
||||
"label": "Fuel"
|
||||
},
|
||||
"fuel/biodiesel": {
|
||||
"label": "Sells Biodiesel"
|
||||
},
|
||||
"fuel/diesel": {
|
||||
"label": "Sells Diesel"
|
||||
},
|
||||
"fuel/e10": {
|
||||
"label": "Sells E10"
|
||||
},
|
||||
"fuel/e85": {
|
||||
"label": "Sells E85"
|
||||
},
|
||||
"fuel/lpg": {
|
||||
"label": "Sells Propane"
|
||||
},
|
||||
"fuel/octane_100": {
|
||||
"label": "Sells Racing Gasoline"
|
||||
},
|
||||
"fuel/octane_91": {
|
||||
"label": "Sells Regular Gasoline"
|
||||
},
|
||||
"fuel/octane_95": {
|
||||
"label": "Sells Midgrade Gasoline"
|
||||
},
|
||||
"fuel/octane_98": {
|
||||
"label": "Sells Premium Gasoline"
|
||||
},
|
||||
"gauge": {
|
||||
"label": "Gauge"
|
||||
},
|
||||
@@ -1050,6 +1077,10 @@
|
||||
"name": "Car Wash",
|
||||
"terms": ""
|
||||
},
|
||||
"amenity/charging_station": {
|
||||
"name": "Charging Station",
|
||||
"terms": "EV,Electric Vehicle,Supercharger"
|
||||
},
|
||||
"amenity/childcare": {
|
||||
"name": "Childcare",
|
||||
"terms": "nursery,orphanage,playgroup"
|
||||
@@ -1070,6 +1101,10 @@
|
||||
"name": "College",
|
||||
"terms": ""
|
||||
},
|
||||
"amenity/compressed_air": {
|
||||
"name": "Compressed Air",
|
||||
"terms": ""
|
||||
},
|
||||
"amenity/courthouse": {
|
||||
"name": "Courthouse",
|
||||
"terms": ""
|
||||
|
||||
Reference in New Issue
Block a user