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.

55 lines
1.7 KiB

  1. {
  2. "type": "overpass",
  3. "name": {
  4. "ast": "Servicios d'emerxencia",
  5. "ca": "Serveis d'emergència",
  6. "cs": "Pohotovostní služby",
  7. "de": "Notfalldienste",
  8. "el": "Υπηρεσίες Έκτακτης Ανάγκης",
  9. "en": "Emergency Services",
  10. "es": "Servicios de emergencia",
  11. "et": "Hädaabi teenused",
  12. "fr": "Service d'urgence",
  13. "it": "Servizi d'emergenza",
  14. "ja": "緊急サービス",
  15. "nl": "Hulpdiensten",
  16. "ro": "Servicii urgenta",
  17. "ru": "Экстренные службы",
  18. "uk": "Швидка допомога"
  19. },
  20. "query": {
  21. "11": [
  22. "(node[amenity~\"^(fire_station|hospital)$\"];",
  23. "way[amenity~\"^(fire_station|hospital)$\"];",
  24. "relation[amenity~\"^(fire_station|hospital)$\"])"
  25. ],
  26. "13": [
  27. "(node[amenity~\"^(fire_station|hospital|police|emergency_phone)$\"];",
  28. "way[amenity~\"^(fire_station|hospital|police|emergency_phone)$\"];",
  29. "relation[amenity~\"^(fire_station|hospital|police|emergency_phone)$\"])"
  30. ]
  31. },
  32. "feature": {
  33. "description": "{{ tagTrans('amenity', tags.amenity) }}",
  34. "markerSign": [
  35. "{% set data = const[tags.amenity] %}",
  36. "{% if data %}",
  37. "{{ data.sign }}",
  38. "{% endif %}"
  39. ]
  40. },
  41. "const": {
  42. "fire_station": {
  43. "sign": "🔥"
  44. },
  45. "hospital": {
  46. "sign": "🏥"
  47. },
  48. "police": {
  49. "sign": "👮"
  50. },
  51. "emergency_phone": {
  52. "sign": "📞"
  53. }
  54. }
  55. }