Main categories of OpenStreetBrowser
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.5 KiB

7 years ago
7 years ago
7 years ago
7 years ago
6 years ago
7 years ago
6 years ago
  1. {
  2. "type": "overpass",
  3. "name": {
  4. "ast": "Infraestructures",
  5. "cs": "Občasnká vybavenost",
  6. "de": "Einrichtungen",
  7. "en": "Amenities",
  8. "fr": "Équipements auto",
  9. "hu": "Létesítmények",
  10. "it": "Infrastrutture",
  11. "ja": "生活環境",
  12. "nl": "Voorzieningen",
  13. "pt-br": "Equipamentos",
  14. "ru": "Обслуживание транспорта",
  15. "uk": "Amenities"
  16. },
  17. "query": {
  18. "13": [
  19. "(",
  20. "nwr[amenity~\"^(car_rental|car_sharing|fuel)$\"];",
  21. "nwr[amenity~\"^(charging_station)$\"][motorcar][motorcar!=\"no\"];",
  22. "nwr[amenity~\"^(charging_station)$\"][motorcycle][motorcycle!=\"no\"];",
  23. ")"
  24. ],
  25. "16": [
  26. "(",
  27. "nwr[amenity~\"^(car_rental|car_sharing|car_wash|fuel|motorcycle_parking|parking)$\"];",
  28. "nwr[amenity~\"^(charging_station)$\"][motorcar][motorcar!=\"no\"];",
  29. "nwr[amenity~\"^(charging_station)$\"][motorcycle][motorcycle!=\"no\"];",
  30. ")"
  31. ]
  32. },
  33. "feature": {
  34. "pre": [
  35. "{% set key = 'amenity' %}",
  36. "{% set value = tags.amenity %}"
  37. ],
  38. "description": "{{ tagTrans(key, value) }}",
  39. "markerSign": "{{ const[value] }}"
  40. },
  41. "const": {
  42. "car_rental": "R",
  43. "car_sharing": "S",
  44. "car_wash": "🚿",
  45. "charging_station": "🔌",
  46. "fuel": "⛽",
  47. "parking": "🅿",
  48. "motorcycle_parking": "🅿"
  49. }
  50. }