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.

93 lines
2.7 KiB

  1. {
  2. "type": "overpass",
  3. "name": {
  4. "ast": "Hestoria",
  5. "cs": "Historické",
  6. "de": "Geschichte",
  7. "el": "Ιστορικά",
  8. "en": "Historic",
  9. "et": "Ajalooline",
  10. "fr": "Histoire",
  11. "hu": "Historikus",
  12. "it": "Storia",
  13. "ja": "記念",
  14. "nl": "Historisch",
  15. "pl": "Miejsca Historyczne",
  16. "pt-br": "Histórico",
  17. "ro": "Istoric",
  18. "ru": "Историческое",
  19. "uk": "Історія"
  20. },
  21. "query": {
  22. "11": [
  23. "(",
  24. "node[historic~\"^(castle|archaeological_site|battlefield|monument)$\"];",
  25. "way[historic~\"^(castle|archaeological_site|battlefield|monument)$\"];",
  26. "relation[historic~\"^(castle|archaeological_site|battlefield|monument)$\"];",
  27. "node[heritage~\"^(1|2|3|4)$\"];",
  28. "way[heritage~\"^(1|2|3|4)$\"];",
  29. "relation[heritage~\"^(1|2|3|4)$\"];",
  30. ")"
  31. ],
  32. "14": [
  33. "(",
  34. "node[historic];",
  35. "way[historic];",
  36. "relation[historic];",
  37. "node[heritage];",
  38. "way[heritage];",
  39. "relation[heritage];",
  40. ")"
  41. ]
  42. },
  43. "feature": {
  44. "description": [
  45. "{{ tagTransList('historic', tags.historic) }}",
  46. "{% if tags.heritage %}{{ keyTrans('heritage') }} ({{ tags.heritage }}){% endif %}"
  47. ],
  48. "markerSign": "{{ const[tags.historic].sign|raw }}"
  49. },
  50. "info": [
  51. "<table>",
  52. "{% for value, data in const %}",
  53. "{% if data.zoom <= map.zoom %}",
  54. " <tr>",
  55. " <td>{{ markerCircle({})|raw }}<div class='sign'>{{ data.sign|raw }}</div></td>",
  56. " <td>{{ tagTrans('historic', value) }}</td>",
  57. " </tr>",
  58. "{% endif %}",
  59. "{% endfor %}",
  60. "{% if 14 <= map.zoom %}",
  61. " <tr>",
  62. " <td>{{ markerCircle({})|raw }}<div class='sign'></div></td>",
  63. " <td>{{ trans('other') }}</td>",
  64. " </tr>",
  65. "{% endif %}",
  66. "</table>"
  67. ],
  68. "const": {
  69. "archaeological_site": {
  70. "sign": "",
  71. "zoom": 11
  72. },
  73. "battlefield": {
  74. "sign": "",
  75. "zoom": 11
  76. },
  77. "castle": {
  78. "sign": "<img src='maki:castle'>",
  79. "zoom": 11
  80. },
  81. "aircraft": {
  82. "sign": "<img src='maki:airport'>",
  83. "zoom": 14
  84. },
  85. "memorial": {
  86. "sign": "<span style='position: relative; top: -2px;'><img src='maki:monument?size=11'></span>",
  87. "zoom": 14
  88. },
  89. "monument": {
  90. "sign": "<img src='maki:monument?size=15'>",
  91. "zoom": 11
  92. }
  93. }
  94. }