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.

84 lines
2.4 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. ")"
  28. ],
  29. "14": [
  30. "(",
  31. "node[historic];",
  32. "way[historic];",
  33. "relation[historic];",
  34. ")"
  35. ]
  36. },
  37. "feature": {
  38. "description": "{{ tagTransList('historic', tags.historic) }}",
  39. "markerSign": "{{ const[tags.historic].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('historic', value) }}</td>",
  48. " </tr>",
  49. "{% endif %}",
  50. "{% endfor %}",
  51. "{% if 14 <= map.zoom %}",
  52. " <tr>",
  53. " <td>{{ markerCircle({})|raw }}<div class='sign'></div></td>",
  54. " <td>{{ trans('other') }}</td>",
  55. " </tr>",
  56. "{% endif %}",
  57. "</table>"
  58. ],
  59. "const": {
  60. "archaeological_site": {
  61. "sign": "",
  62. "zoom": 11
  63. },
  64. "battlefield": {
  65. "sign": "",
  66. "zoom": 11
  67. },
  68. "castle": {
  69. "sign": "<img src='maki:castle'>",
  70. "zoom": 11
  71. },
  72. "aircraft": {
  73. "sign": "<img src='maki:airport'>",
  74. "zoom": 14
  75. },
  76. "memorial": {
  77. "sign": "<span style='position: relative; top: -2px;'><img src='maki:monument?size=11'></span>",
  78. "zoom": 14
  79. },
  80. "monument": {
  81. "sign": "<img src='maki:monument?size=15'>",
  82. "zoom": 11
  83. }
  84. }
  85. }