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.

59 lines
1.9 KiB

  1. {
  2. "type": "overpass",
  3. "name": {
  4. "ast": "Cultura",
  5. "ca": "Cultura",
  6. "cs": "Kultura",
  7. "de": "Kultur",
  8. "el": "Πολιτισμός",
  9. "en": "Culture",
  10. "es": "Cultura",
  11. "et": "Kultuur",
  12. "fr": "Culture",
  13. "hu": "Kultúra",
  14. "it": "Cultura",
  15. "ja": "文化",
  16. "nl": "Cultuur",
  17. "pl": "Kultura",
  18. "ro": "Cultura",
  19. "ru": "Культура",
  20. "uk": "Культура "
  21. },
  22. "query": {
  23. "13": [
  24. "(",
  25. "node[amenity~\"^(arts_centre|cinema|community_centre|fountain|studio|theatre)$\"];",
  26. "way[amenity~\"^(arts_centre|cinema|community_centre|fountain|studio|theatre)$\"];",
  27. "relation[amenity~\"^(arts_centre|cinema|community_centre|fountain|studio|theatre)$\"];",
  28. "node[tourism~\"^(artwork|gallery|museum|theme_park)$\"];",
  29. "way[tourism~\"^(artwork|gallery|museum|theme_park)$\"];",
  30. "relation[tourism~\"^(artwork|gallery|museum|theme_park)$\"];",
  31. ")"
  32. ]
  33. },
  34. "feature": {
  35. "pre": [
  36. "{% if tags.amenity in [ 'arts_centre', 'cinema', 'community_centre', 'fountain', 'studio', 'theatre' ] %}",
  37. "{% set key = 'amenity' %}",
  38. "{% set value = tags.amenity %}",
  39. "{% elseif tags.tourism %}",
  40. "{% set key = 'tourism' %}",
  41. "{% set value = tags.tourism %}",
  42. "{% endif %}"
  43. ],
  44. "description": "{{ tagTrans(key, value) }}",
  45. "markerSign": "{{ const[value] }}"
  46. },
  47. "const": {
  48. "arts_centre": "🎨",
  49. "cinema": "🎦",
  50. "community_centre": "",
  51. "fountain": "⛲",
  52. "studio": "",
  53. "theatre": "🎭",
  54. "artwork": "🎨 ",
  55. "gallery": "🖼",
  56. "museum": "🏛 ",
  57. "theme_park": ""
  58. }
  59. }