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.

232 lines
6.7 KiB

7 years ago
  1. {
  2. "type": "overpass",
  3. "name": {
  4. "ast": "Formaciones naturales",
  5. "cs": "Přírodní úkazy",
  6. "de": "Geographische Objekte",
  7. "el": "Φυσικοί Σχηματισμοί",
  8. "en": "Natural Formations",
  9. "fr": "Éléments naturels",
  10. "hu": "Természeti képződmények",
  11. "it": "Natura",
  12. "ja": "自然地層",
  13. "nl": "Natuurlijke Formaties",
  14. "pt": "Formações naturais",
  15. "pt-br": "Formações naturais",
  16. "ru": "Природные образования",
  17. "uk": "Природне середовище"
  18. },
  19. "query": {
  20. "9": [
  21. "(",
  22. "node[natural~\"^(peak|volcano)$\"];",
  23. ")"
  24. ],
  25. "13": [
  26. "(",
  27. "nwr[natural~\"^(peak|volcano|wood|scrub|heath|grassland|fell|bare_rock|scree|shingle|sand|mud|wetland|glacier|cape|beach|coastline|valley|ridge|arete|cliff|saddle|rock|stone|sinkhole|cave_entrance)$\"];",
  28. ")"
  29. ],
  30. "16": [
  31. "(",
  32. "nwr[natural][natural!~\"^(water|divide|bay|strait|spring|hot_spring|geyser)$\"];",
  33. ")"
  34. ]
  35. },
  36. "feature": {
  37. "title": [
  38. "{{ localizedTag(tags, 'name') | default(trans('unnamed')) }}",
  39. "{% if tags.natural == 'peak' and tags.ele %}({{ tags.ele }}m){% endif %}"
  40. ],
  41. "description": "{{ tagTrans('natural', tags.natural) }}",
  42. "style": {
  43. "color": "{{ const[tags.natural].color|default('#f2756a') }}"
  44. },
  45. "markerSign": "<span style='color: white'>{{ const[tags.natural].sign|raw }}</span>",
  46. "markerSymbol": "{{ markerPointer({ fillColor: const[tags.natural].color|default('#f2756a') })|raw }}",
  47. "listMarkerSymbol": "{{ markerCircle({ fillColor: const[tags.natural].color|default('#f2756a') })|raw }}"
  48. },
  49. "filter": {
  50. "type": {
  51. "name": "{{ trans('filter:type') }}",
  52. "key": "natural",
  53. "type": "select",
  54. "show_default": "true",
  55. "values": "{% set list = [] %}{% for k, v in const %}<option value=\"{{ k }}\">{% set list = list|merge([ k ]) %}{{ tagTrans('natural', k) }}</option>{% endfor %}<option weight='1' value='other' query='nwr[natural][natural!~\"^(|.*;)({{ list|join('|') }})(|;.*)$\"]'>{{ trans('other') }}</option>",
  56. "sort": "natsort",
  57. "op": "has"
  58. }
  59. },
  60. "const": {
  61. "wood": {
  62. "sign": "<i class='fas fa-tree'></i>",
  63. "color": "darkgreen",
  64. "group": "vegetation"
  65. },
  66. "tree_row": {
  67. "sign": "<i class='fas fa-tree'></i>",
  68. "color": "darkgreen",
  69. "group": "vegetation"
  70. },
  71. "tree": {
  72. "sign": "<i class='fas fa-tree'></i>",
  73. "color": "darkgreen",
  74. "group": "vegetation"
  75. },
  76. "scrub": {
  77. "sign": "",
  78. "color": "green",
  79. "group": "vegetation"
  80. },
  81. "heath": {
  82. "sign": "",
  83. "color": "green",
  84. "group": "vegetation"
  85. },
  86. "moor": {
  87. "sign": "",
  88. "color": "#8aba50",
  89. "group": "vegetation"
  90. },
  91. "grassland": {
  92. "sign": "",
  93. "color": "#00dd24",
  94. "group": "vegetation"
  95. },
  96. "fell": {
  97. "sign": "",
  98. "color": "#49ba91",
  99. "group": "vegetation"
  100. },
  101. "bare_rock": {
  102. "sign": "",
  103. "color": "#6f6f6f",
  104. "group": "vegetation"
  105. },
  106. "scree": {
  107. "sign": "",
  108. "color": "#6f6f6f",
  109. "group": "vegetation"
  110. },
  111. "shingle": {
  112. "sign": "",
  113. "color": "#6f6f6f",
  114. "group": "vegetation"
  115. },
  116. "sand": {
  117. "sign": "",
  118. "color": "#f9d199",
  119. "group": "vegetation"
  120. },
  121. "mud": {
  122. "sign": "<img data-src='maki:wetland?fill=white'>",
  123. "color": "#988b00",
  124. "group": "vegetation"
  125. },
  126. "wetland": {
  127. "sign": "<img data-src='maki:wetland?fill=white'>",
  128. "color": "#00baff",
  129. "group": "water"
  130. },
  131. "glacier": {
  132. "sign": "<i style='color: black;' class='fas fa-icicles'></i>",
  133. "color": "white",
  134. "group": "water"
  135. },
  136. "cape": {
  137. "sign": "",
  138. "color": "#1d7500",
  139. "group": "water"
  140. },
  141. "peninsula": {
  142. "sign": "",
  143. "color": "#1d7500",
  144. "group": "water"
  145. },
  146. "beach": {
  147. "sign": "<i class='fas fa-umbrella-beach'></i>",
  148. "color": "#f9d199",
  149. "group": "water"
  150. },
  151. "coastline": {
  152. "sign": "",
  153. "color": "blue",
  154. "group": "water"
  155. },
  156. "reef": {
  157. "sign": "",
  158. "color": "#005fbd",
  159. "group": "water"
  160. },
  161. "peak": {
  162. "sign": "<i class='fas fa-mountain'></i>",
  163. "color": "#4f4f4f",
  164. "group": "landform"
  165. },
  166. "hill": {
  167. "sign": "",
  168. "color": "#4f4f4f",
  169. "group": "landform"
  170. },
  171. "volcano": {
  172. "sign": "",
  173. "color": "#cf3a00",
  174. "group": "landform"
  175. },
  176. "valley": {
  177. "sign": "",
  178. "color": "#1d7500",
  179. "group": "landform"
  180. },
  181. "river_terrace": {
  182. "sign": "",
  183. "color": "#a0a500",
  184. "group": "landform"
  185. },
  186. "ridge": {
  187. "sign": "",
  188. "color": "#4f4f4f",
  189. "group": "landform"
  190. },
  191. "arete": {
  192. "sign": "",
  193. "color": "#4f4f4f",
  194. "group": "landform"
  195. },
  196. "cliff": {
  197. "sign": "",
  198. "color": "#4f4f4f",
  199. "group": "landform"
  200. },
  201. "saddle": {
  202. "sign": "",
  203. "color": "#4f4f4f",
  204. "group": "landform"
  205. },
  206. "rock": {
  207. "sign": "",
  208. "color": "#4f4f4f",
  209. "group": "landform"
  210. },
  211. "stone": {
  212. "sign": "",
  213. "color": "#4f4f4f",
  214. "group": "landform"
  215. },
  216. "sinkhole": {
  217. "sign": "",
  218. "color": "#a0a500",
  219. "group": "landform"
  220. },
  221. "cave_entrance": {
  222. "sign": "",
  223. "color": "#000000",
  224. "group": "landform"
  225. },
  226. "isthmus": {
  227. "sign": "",
  228. "color": "#1d7500",
  229. "group": "landform"
  230. }
  231. }
  232. }