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.

98 lines
2.9 KiB

  1. {
  2. "type": "overpass",
  3. "name": {
  4. "ast": "Turismu",
  5. "cs": "Turistika",
  6. "de": "Tourismus",
  7. "el": "Τουρισμός",
  8. "en": "Tourism",
  9. "et": "Turism",
  10. "fr": "Tourisme",
  11. "hu": "Túrizmus",
  12. "it": "Turismo",
  13. "ja": "観光",
  14. "nl": "Toerisme",
  15. "pl": "Turystyka",
  16. "pt-br": "Turismo",
  17. "ro": "Turism",
  18. "ru": "Туризм",
  19. "uk": "Туризм"
  20. },
  21. "query": {
  22. "13": [
  23. "(",
  24. "node[tourism~\"^(alpine_hut|apartment|camp_site|caravan_site|chalet|guest_house|hostel|hotel|motel|wilderness_hut)$\"];",
  25. "way[tourism~\"^(alpine_hut|apartment|camp_site|caravan_site|chalet|guest_house|hostel|hotel|motel|wilderness_hut)$\"];",
  26. "relation[tourism~\"^(alpine_hut|apartment|camp_site|caravan_site|chalet|guest_house|hostel|hotel|motel|wilderness_hut)$\"];",
  27. ")"
  28. ],
  29. "16": [
  30. "(",
  31. "node[tourism~\"^(alpine_hut|apartment|camp_site|caravan_site|chalet|guest_house|hostel|hotel|information|motel|wilderness_hut)$\"];",
  32. "way[tourism~\"^(alpine_hut|apartment|camp_site|caravan_site|chalet|guest_house|hostel|hotel|information|motel|wilderness_hut)$\"];",
  33. "relation[tourism~\"^(alpine_hut|apartment|camp_site|caravan_site|chalet|guest_house|hostel|hotel|information|motel|wilderness_hut)$\"];",
  34. ")"
  35. ]
  36. },
  37. "feature": {
  38. "description": "{{ tagTrans('tourism', tags.tourism) }}",
  39. "markerSign": "{{ const[tags.tourism].sign|raw }}"
  40. },
  41. "info": [
  42. "<table>",
  43. "{% for value, data in const %}",
  44. "{% if data.zoom <= map.zoom %}",
  45. " <tr>",
  46. " <td>{{ markerCircle({})|raw }}<div class='sign'>{{ data.sign|raw }}</div></td>",
  47. " <td>{{ tagTrans('tourism', value) }}</td>",
  48. " </tr>",
  49. "{% endif %}",
  50. "{% endfor %}",
  51. "</table>"
  52. ],
  53. "const": {
  54. "alpine_hut": {
  55. "sign": "🛌",
  56. "zoom": 13
  57. },
  58. "apartment": {
  59. "sign": "🛌",
  60. "zoom": 13
  61. },
  62. "camp_site": {
  63. "sign": "⛺",
  64. "zoom": 13
  65. },
  66. "caravan_site": {
  67. "sign": "⛺",
  68. "zoom": 13
  69. },
  70. "chalet": {
  71. "sign": "🛌",
  72. "zoom": 13
  73. },
  74. "guest_house": {
  75. "sign": "🛌",
  76. "zoom": 13
  77. },
  78. "hostel": {
  79. "sign": "🛌",
  80. "zoom": 13
  81. },
  82. "hotel": {
  83. "sign": "🛌",
  84. "zoom": 13
  85. },
  86. "motel": {
  87. "sign": "🛌",
  88. "zoom": 13
  89. },
  90. "wilderness_hut": {
  91. "sign": "",
  92. "zoom": 13
  93. },
  94. "information": {
  95. "sign": "ℹ️",
  96. "zoom": 16
  97. }
  98. }
  99. }