more amenity, shop & tourism layers
This commit is contained in:
parent
7532488a02
commit
fe5ff508c1
66 changed files with 786 additions and 4 deletions
|
|
@ -85,8 +85,86 @@ BR.confLayers.tree = {
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
'overpass': {
|
'overpass': {
|
||||||
|
'amenity': {
|
||||||
|
'financial': [
|
||||||
|
'atm',
|
||||||
|
'bank',
|
||||||
|
],
|
||||||
|
'others': [
|
||||||
|
'bench',
|
||||||
|
'kneipp_water_cure',
|
||||||
|
'public_bath',
|
||||||
|
'shelter',
|
||||||
|
'shower',
|
||||||
|
'telephone',
|
||||||
|
'toilets',
|
||||||
|
'water_point',
|
||||||
|
],
|
||||||
|
'sustenance': [
|
||||||
|
'bar',
|
||||||
|
'bbq',
|
||||||
|
'biergarten',
|
||||||
|
'cafe',
|
||||||
|
'drinking_water',
|
||||||
|
'fast_food',
|
||||||
|
'food_court',
|
||||||
|
'ice_cream',
|
||||||
|
'pub',
|
||||||
|
'restaurant',
|
||||||
|
],
|
||||||
|
'transportation': [
|
||||||
|
'bicycle_parking',
|
||||||
|
'bicycle_rental',
|
||||||
|
'bicycle_repair_station',
|
||||||
|
'boat_rental',
|
||||||
|
'boat_sharing',
|
||||||
|
'bus_station',
|
||||||
|
'car_rental',
|
||||||
|
'car_sharing',
|
||||||
|
'car_wash',
|
||||||
|
'charging_station',
|
||||||
|
'ferry_terminal',
|
||||||
|
'fuel',
|
||||||
|
'grit_bin',
|
||||||
|
'motorcycle_parking',
|
||||||
|
'parking_entrance',
|
||||||
|
'parking',
|
||||||
|
'parking_space',
|
||||||
|
'taxi',
|
||||||
|
'vehicle_inspection',
|
||||||
|
]
|
||||||
|
},
|
||||||
|
'shop': {
|
||||||
|
'food': [
|
||||||
|
'bakery',
|
||||||
|
'beverages',
|
||||||
|
'butcher',
|
||||||
|
'cheese',
|
||||||
|
'coffee',
|
||||||
|
'convenience',
|
||||||
|
'greengrocer',
|
||||||
|
'health_food',
|
||||||
|
'ice_cream',
|
||||||
|
'organic',
|
||||||
|
]
|
||||||
|
},
|
||||||
'tourism': [
|
'tourism': [
|
||||||
'campsites'
|
'apartment',
|
||||||
|
'artwork',
|
||||||
|
'attraction',
|
||||||
|
'camp_site',
|
||||||
|
'caravan_site',
|
||||||
|
'chalet',
|
||||||
|
'gallery',
|
||||||
|
'guest_house',
|
||||||
|
'hostel',
|
||||||
|
'hotel',
|
||||||
|
'information',
|
||||||
|
'motel',
|
||||||
|
'museum',
|
||||||
|
'picnic_site',
|
||||||
|
'viewpoint',
|
||||||
|
'wilderness_hut',
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
||||||
11
layers/overpass/amenity/financial/atm.geojson
Normal file
11
layers/overpass/amenity/financial/atm.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "ATM",
|
||||||
|
"id": "atm",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[amenity=atm]; node[amenity=bank][atm][atm!=no]; way[amenity=bank][atm][atm!=no];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
{
|
{
|
||||||
"geometry": null,
|
"geometry": null,
|
||||||
"properties": {
|
"properties": {
|
||||||
"name": "Campsites",
|
"name": "Bank",
|
||||||
"id": "campsites",
|
"id": "bank",
|
||||||
"overlay": true,
|
"overlay": true,
|
||||||
"dataSource": "OverpassAPI",
|
"dataSource": "OverpassAPI",
|
||||||
"query": "(node[tourism=camp_site];way[tourism=camp_site];);"
|
"query": "(node[amenity=bank]; way[amenity=bank];);"
|
||||||
},
|
},
|
||||||
"type": "Feature"
|
"type": "Feature"
|
||||||
}
|
}
|
||||||
11
layers/overpass/amenity/others/bench.geojson
Normal file
11
layers/overpass/amenity/others/bench.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Bench",
|
||||||
|
"id": "bench",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "node[amenity=bench];"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/amenity/others/kneipp_water_cure.geojson
Normal file
11
layers/overpass/amenity/others/kneipp_water_cure.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Kneipp water cure",
|
||||||
|
"id": "kneipp_water_cure",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[amenity=kneipp_water_cure]; way[amenity=kneipp_water_cure];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/amenity/others/public_bath.geojson
Normal file
11
layers/overpass/amenity/others/public_bath.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Public bath",
|
||||||
|
"id": "public_bath",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[amenity=public_bath]; way[amenity=public_bath];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/amenity/others/shelter.geojson
Normal file
11
layers/overpass/amenity/others/shelter.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Shelter",
|
||||||
|
"id": "shelter",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[amenity=shelter]; way[amenity=shelter];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/amenity/others/shower.geojson
Normal file
11
layers/overpass/amenity/others/shower.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Shower",
|
||||||
|
"id": "shower",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[amenity=shower]; way[amenity=shower];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/amenity/others/telephone.geojson
Normal file
11
layers/overpass/amenity/others/telephone.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Telephone",
|
||||||
|
"id": "telephone",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "node[amenity=telephone];"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/amenity/others/toilets.geojson
Normal file
11
layers/overpass/amenity/others/toilets.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Toilets",
|
||||||
|
"id": "toilets",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[amenity=toilets]; way[amenity=toilets];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/amenity/others/water_point.geojson
Normal file
11
layers/overpass/amenity/others/water_point.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Water point",
|
||||||
|
"id": "water_point",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "node[amenity=water_point];"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/amenity/sustenance/bar.geojson
Normal file
11
layers/overpass/amenity/sustenance/bar.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Bar",
|
||||||
|
"id": "bar",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[amenity=bar]; way[amenity=bar];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/amenity/sustenance/bbq.geojson
Normal file
11
layers/overpass/amenity/sustenance/bbq.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Bbq",
|
||||||
|
"id": "bbq",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "node[amenity=bbq];"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/amenity/sustenance/biergarten.geojson
Normal file
11
layers/overpass/amenity/sustenance/biergarten.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Biergarten",
|
||||||
|
"id": "biergarten",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[amenity=biergarten]; way[amenity=biergarten];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/amenity/sustenance/cafe.geojson
Normal file
11
layers/overpass/amenity/sustenance/cafe.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Cafe",
|
||||||
|
"id": "cafe",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[amenity=cafe]; way[amenity=cafe];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/amenity/sustenance/drinking_water.geojson
Normal file
11
layers/overpass/amenity/sustenance/drinking_water.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Drinking water",
|
||||||
|
"id": "drinking_water",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "node[amenity=drinking_water];"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/amenity/sustenance/fast_food.geojson
Normal file
11
layers/overpass/amenity/sustenance/fast_food.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Fast food",
|
||||||
|
"id": "fast_food",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[amenity=fast_food]; way[amenity=fast_food];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/amenity/sustenance/food_court.geojson
Normal file
11
layers/overpass/amenity/sustenance/food_court.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Food court",
|
||||||
|
"id": "food_court",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[amenity=food_court]; way[amenity=food_court];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/amenity/sustenance/ice_cream.geojson
Normal file
11
layers/overpass/amenity/sustenance/ice_cream.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Ice cream",
|
||||||
|
"id": "ice_cream",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[amenity=ice_cream]; way[amenity=ice_cream];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/amenity/sustenance/pub.geojson
Normal file
11
layers/overpass/amenity/sustenance/pub.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Pub",
|
||||||
|
"id": "pub",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[amenity=pub]; way[amenity=pub];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/amenity/sustenance/restaurant.geojson
Normal file
11
layers/overpass/amenity/sustenance/restaurant.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Restaurant",
|
||||||
|
"id": "restaurant",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[amenity=restaurant]; way[amenity=restaurant];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Bicycle parking",
|
||||||
|
"id": "bicycle_parking",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[amenity=bicycle_parking]; way[amenity=bicycle_parking];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Bicycle rental",
|
||||||
|
"id": "bicycle_rental",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[amenity=bicycle_rental]; way[amenity=bicycle_rental];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Bicycle repair station",
|
||||||
|
"id": "bicycle_repair_station",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[amenity=bicycle_repair_station]; way[amenity=bicycle_repair_station];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/amenity/transportation/boat_rental.geojson
Normal file
11
layers/overpass/amenity/transportation/boat_rental.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Boat rental",
|
||||||
|
"id": "boat_rental",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[amenity=boat_rental]; way[amenity=boat_rental];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/amenity/transportation/boat_sharing.geojson
Normal file
11
layers/overpass/amenity/transportation/boat_sharing.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Boat sharing",
|
||||||
|
"id": "boat_sharing",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[amenity=boat_sharing]; way[amenity=boat_sharing];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/amenity/transportation/bus_station.geojson
Normal file
11
layers/overpass/amenity/transportation/bus_station.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Bus station",
|
||||||
|
"id": "bus_station",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[amenity=bus_station]; way[amenity=bus_station];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/amenity/transportation/car_rental.geojson
Normal file
11
layers/overpass/amenity/transportation/car_rental.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Car rental",
|
||||||
|
"id": "car_rental",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[amenity=car_rental]; way[amenity=car_rental];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/amenity/transportation/car_sharing.geojson
Normal file
11
layers/overpass/amenity/transportation/car_sharing.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Car sharing",
|
||||||
|
"id": "car_sharing",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[amenity=car_sharing]; way[amenity=car_sharing];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/amenity/transportation/car_wash.geojson
Normal file
11
layers/overpass/amenity/transportation/car_wash.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Car wash",
|
||||||
|
"id": "car_wash",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[amenity=car_wash]; way[amenity=car_wash];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Charging station",
|
||||||
|
"id": "charging_station",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "node[amenity=charging_station];"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Ferry terminal",
|
||||||
|
"id": "ferry_terminal",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[amenity=ferry_terminal]; way[amenity=ferry_terminal];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/amenity/transportation/fuel.geojson
Normal file
11
layers/overpass/amenity/transportation/fuel.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Fuel",
|
||||||
|
"id": "fuel",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[amenity=fuel]; way[amenity=fuel];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/amenity/transportation/grit_bin.geojson
Normal file
11
layers/overpass/amenity/transportation/grit_bin.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Grit bin",
|
||||||
|
"id": "grit_bin",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "node[amenity=grit_bin];"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Motorcycle parking",
|
||||||
|
"id": "motorcycle_parking",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[amenity=motorcycle_parking]; way[amenity=motorcycle_parking];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/amenity/transportation/parking.geojson
Normal file
11
layers/overpass/amenity/transportation/parking.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Parking",
|
||||||
|
"id": "parking",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[amenity=parking]; way[amenity=parking];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Parking entrance",
|
||||||
|
"id": "parking_entrance",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "node[amenity=parking_entrance];"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/amenity/transportation/parking_space.geojson
Normal file
11
layers/overpass/amenity/transportation/parking_space.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Parking space",
|
||||||
|
"id": "parking_space",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[amenity=parking_space]; way[amenity=parking_space];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/amenity/transportation/taxi.geojson
Normal file
11
layers/overpass/amenity/transportation/taxi.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Taxi",
|
||||||
|
"id": "taxi",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[amenity=taxi]; way[amenity=taxi];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Vehicle inspection",
|
||||||
|
"id": "vehicle_inspection",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[amenity=vehicle_inspection]; way[amenity=vehicle_inspection];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/shop/food/bakery.geojson
Normal file
11
layers/overpass/shop/food/bakery.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Bakery",
|
||||||
|
"id": "bakery",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[shop=bakery]; way[shop=bakery];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/shop/food/beverages.geojson
Normal file
11
layers/overpass/shop/food/beverages.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Beverages",
|
||||||
|
"id": "beverages",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[shop=beverages]; way[shop=beverages];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/shop/food/butcher.geojson
Normal file
11
layers/overpass/shop/food/butcher.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Butcher",
|
||||||
|
"id": "butcher",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[shop=butcher]; way[shop=butcher];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/shop/food/cheese.geojson
Normal file
11
layers/overpass/shop/food/cheese.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Cheese",
|
||||||
|
"id": "cheese",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[shop=cheese]; way[shop=cheese];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/shop/food/coffee.geojson
Normal file
11
layers/overpass/shop/food/coffee.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Coffee",
|
||||||
|
"id": "coffee",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[shop=coffee]; way[shop=coffee];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/shop/food/convenience.geojson
Normal file
11
layers/overpass/shop/food/convenience.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Convenience",
|
||||||
|
"id": "convenience",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[shop=convenience]; way[shop=convenience];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/shop/food/greengrocer.geojson
Normal file
11
layers/overpass/shop/food/greengrocer.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Greengrocer",
|
||||||
|
"id": "greengrocer",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[shop=greengrocer]; way[shop=greengrocer];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/shop/food/health_food.geojson
Normal file
11
layers/overpass/shop/food/health_food.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Health food",
|
||||||
|
"id": "health_food",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[shop=health_food]; way[shop=health_food];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/shop/food/ice_cream.geojson
Normal file
11
layers/overpass/shop/food/ice_cream.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Ice cream",
|
||||||
|
"id": "ice_cream",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[shop=ice_cream]; way[shop=ice_cream];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/shop/food/organic.geojson
Normal file
11
layers/overpass/shop/food/organic.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Organic",
|
||||||
|
"id": "organic",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[shop~'supermarket|convenience'][organic][organic!=no]; way[shop~'supermarket|convenience'][organic][organic!=no];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/tourism/apartment.geojson
Normal file
11
layers/overpass/tourism/apartment.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Apartment",
|
||||||
|
"id": "apartment",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[tourism=apartment]; way[tourism=apartment];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/tourism/artwork.geojson
Normal file
11
layers/overpass/tourism/artwork.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Artwork",
|
||||||
|
"id": "artwork",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[tourism=artwork]; way[tourism=artwork];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/tourism/attraction.geojson
Normal file
11
layers/overpass/tourism/attraction.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Attraction",
|
||||||
|
"id": "attraction",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[tourism=attraction]; way[tourism=attraction];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/tourism/camp_site.geojson
Normal file
11
layers/overpass/tourism/camp_site.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Camp site",
|
||||||
|
"id": "camp_site",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[tourism=camp_site]; way[tourism=camp_site];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/tourism/caravan_site.geojson
Normal file
11
layers/overpass/tourism/caravan_site.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Caravan site",
|
||||||
|
"id": "caravan_site",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[tourism=caravan_site]; way[tourism=caravan_site];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/tourism/chalet.geojson
Normal file
11
layers/overpass/tourism/chalet.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Chalet",
|
||||||
|
"id": "chalet",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[tourism=chalet]; way[tourism=chalet];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/tourism/gallery.geojson
Normal file
11
layers/overpass/tourism/gallery.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Gallery",
|
||||||
|
"id": "gallery",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[tourism=gallery]; way[tourism=gallery];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/tourism/guest_house.geojson
Normal file
11
layers/overpass/tourism/guest_house.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Guest house",
|
||||||
|
"id": "guest_house",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[tourism=guest_house]; way[tourism=guest_house];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/tourism/hostel.geojson
Normal file
11
layers/overpass/tourism/hostel.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Hostel",
|
||||||
|
"id": "hostel",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[tourism=hostel]; way[tourism=hostel];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/tourism/hotel.geojson
Normal file
11
layers/overpass/tourism/hotel.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Hotel",
|
||||||
|
"id": "hotel",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[tourism=hotel]; way[tourism=hotel];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/tourism/information.geojson
Normal file
11
layers/overpass/tourism/information.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Information",
|
||||||
|
"id": "information",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[tourism=information]; way[tourism=information];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/tourism/motel.geojson
Normal file
11
layers/overpass/tourism/motel.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Motel",
|
||||||
|
"id": "motel",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[tourism=motel]; way[tourism=motel];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/tourism/museum.geojson
Normal file
11
layers/overpass/tourism/museum.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Museum",
|
||||||
|
"id": "museum",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[tourism=museum]; way[tourism=museum];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/tourism/picnic_site.geojson
Normal file
11
layers/overpass/tourism/picnic_site.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Picnic site",
|
||||||
|
"id": "picnic_site",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[tourism=picnic_site]; way[tourism=picnic_site];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/tourism/viewpoint.geojson
Normal file
11
layers/overpass/tourism/viewpoint.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Viewpoint",
|
||||||
|
"id": "viewpoint",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "node[tourism=viewpoint];"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
11
layers/overpass/tourism/wilderness_hut.geojson
Normal file
11
layers/overpass/tourism/wilderness_hut.geojson
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"geometry": null,
|
||||||
|
"properties": {
|
||||||
|
"name": "Wilderness hut",
|
||||||
|
"id": "wilderness_hut",
|
||||||
|
"overlay": true,
|
||||||
|
"dataSource": "OverpassAPI",
|
||||||
|
"query": "(node[tourism=wilderness_hut]; way[tourism=wilderness_hut];);"
|
||||||
|
},
|
||||||
|
"type": "Feature"
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue