Merge pull request #736 from mjaschen/feature/690-overpass-layer-bike-charging-stations

add overpass layer for bicycle charging (fixes #690)
This commit is contained in:
Norbert Renner 2023-06-16 12:24:07 +02:00 committed by GitHub
commit dd7cd574b1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 0 deletions

View file

@ -128,6 +128,7 @@ BR.confLayers.tree = {
'restaurant',
],
'transportation': [
'bicycle_charging_station',
'bicycle_parking',
'bicycle_rental',
'bicycle_repair_station',

View file

@ -0,0 +1,12 @@
{
"geometry": null,
"properties": {
"name": "Bicycle Charging Station",
"id": "bicycle_charging_station",
"overlay": true,
"dataSource": "OverpassAPI",
"icon": "fas-charging-station",
"query": "nwr[amenity=charging_station][bicycle=yes];"
},
"type": "Feature"
}