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.

228 lines
6.6 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. "node[natural~\"^(peak|volcano|wood|scrub|heath|grassland|fell|bare_rock|scree|shingle|sand|mud|wetland|glacier|bay|cape|beach|coastline|spring|hot_spring|geyser|valley|ridge|arete|cliff|saddle|rock|stone|sinkhole|cave_entrance)$\"];",
  28. "way[natural~\"^(peak|volcano|wood|scrub|heath|grassland|fell|bare_rock|scree|shingle|sand|mud|wetland|glacier|bay|cape|beach|coastline|spring|hot_spring|geyser|valley|ridge|arete|cliff|saddle|rock|stone|sinkhole|cave_entrance)$\"];",
  29. "relation[natural~\"^(peak|volcano|wood|scrub|heath|grassland|fell|bare_rock|scree|shingle|sand|mud|wetland|glacier|bay|cape|beach|coastline|spring|hot_spring|geyser|valley|ridge|arete|cliff|saddle|rock|stone|sinkhole|cave_entrance)$\"];",
  30. ")"
  31. ],
  32. "16": [
  33. "(",
  34. "node[natural][natural!~\"^(water)$\"];",
  35. "way[natural][natural!~\"^(water)$\"];",
  36. "relation[natural][natural!~\"^(water)$\"];",
  37. ")"
  38. ]
  39. },
  40. "feature": {
  41. "title": [
  42. "{{ localizedTag(tags, 'name') | default(trans('unnamed')) }}",
  43. "{% if tags.natural == 'peak' and tags.ele %}({{ tags.ele }}m){% endif %}"
  44. ],
  45. "description": "{{ tagTrans('natural', tags.natural) }}",
  46. "style": {
  47. "color": "{{ const[tags.natural].color|default('#f2756a') }}"
  48. },
  49. "markerSign": "<span style='color: white'>{{ const[tags.natural].sign|raw }}</span>",
  50. "markerSymbol": "{{ markerPointer({ fillColor: const[tags.natural].color|default('#f2756a') })|raw }}",
  51. "listMarkerSymbol": "{{ markerCircle({ fillColor: const[tags.natural].color|default('#f2756a') })|raw }}"
  52. },
  53. "const": {
  54. "wood": {
  55. "sign": "<i class='fas fa-tree'></i>",
  56. "color": "darkgreen",
  57. "group": "vegetation"
  58. },
  59. "tree_row": {
  60. "sign": "<i class='fas fa-tree'></i>",
  61. "color": "darkgreen",
  62. "group": "vegetation"
  63. },
  64. "tree": {
  65. "sign": "<i class='fas fa-tree'></i>",
  66. "color": "darkgreen",
  67. "group": "vegetation"
  68. },
  69. "scrub": {
  70. "sign": "",
  71. "color": "green",
  72. "group": "vegetation"
  73. },
  74. "heath": {
  75. "sign": "",
  76. "color": "green",
  77. "group": "vegetation"
  78. },
  79. "moor": {
  80. "sign": "",
  81. "color": "#8aba50",
  82. "group": "vegetation"
  83. },
  84. "grassland": {
  85. "sign": "",
  86. "color": "#00dd24",
  87. "group": "vegetation"
  88. },
  89. "fell": {
  90. "sign": "",
  91. "color": "#49ba91",
  92. "group": "vegetation"
  93. },
  94. "bare_rock": {
  95. "sign": "",
  96. "color": "#6f6f6f",
  97. "group": "vegetation"
  98. },
  99. "scree": {
  100. "sign": "",
  101. "color": "#6f6f6f",
  102. "group": "vegetation"
  103. },
  104. "shingle": {
  105. "sign": "",
  106. "color": "#6f6f6f",
  107. "group": "vegetation"
  108. },
  109. "sand": {
  110. "sign": "",
  111. "color": "#f9d199",
  112. "group": "vegetation"
  113. },
  114. "mud": {
  115. "sign": "<img data-src='maki:wetland?fill=white'>",
  116. "color": "#988b00",
  117. "group": "vegetation"
  118. },
  119. "wetland": {
  120. "sign": "<img data-src='maki:wetland?fill=white'>",
  121. "color": "#00baff",
  122. "group": "water"
  123. },
  124. "glacier": {
  125. "sign": "<i style='color: black;' class='fas fa-icicles'></i>",
  126. "color": "white",
  127. "group": "water"
  128. },
  129. "bay": {
  130. "sign": "",
  131. "group": "water"
  132. },
  133. "cape": {
  134. "sign": "",
  135. "group": "water"
  136. },
  137. "peninsula": {
  138. "sign": "",
  139. "group": "water"
  140. },
  141. "strait": {
  142. "sign": "",
  143. "group": "water"
  144. },
  145. "beach": {
  146. "sign": "<i class='fas fa-umbrella-beach'></i>",
  147. "color": "#f9d199",
  148. "group": "water"
  149. },
  150. "coastline": {
  151. "sign": "",
  152. "group": "water"
  153. },
  154. "spring": {
  155. "sign": "",
  156. "group": "water"
  157. },
  158. "hot_spring": {
  159. "sign": "",
  160. "group": "water"
  161. },
  162. "geyser": {
  163. "sign": "",
  164. "group": "water"
  165. },
  166. "reef": {
  167. "sign": "",
  168. "group": "water"
  169. },
  170. "peak": {
  171. "sign": "<i class='fas fa-mountain'></i>",
  172. "color": "#4f4f4f",
  173. "group": "landform"
  174. },
  175. "hill": {
  176. "sign": "",
  177. "group": "landform"
  178. },
  179. "volcano": {
  180. "sign": "",
  181. "group": "landform"
  182. },
  183. "valley": {
  184. "sign": "",
  185. "group": "landform"
  186. },
  187. "river_terrace": {
  188. "sign": "",
  189. "group": "landform"
  190. },
  191. "ridge": {
  192. "sign": "",
  193. "group": "landform"
  194. },
  195. "arete": {
  196. "sign": "",
  197. "group": "landform"
  198. },
  199. "cliff": {
  200. "sign": "",
  201. "color": "#4f4f4f",
  202. "group": "landform"
  203. },
  204. "saddle": {
  205. "sign": "",
  206. "color": "#4f4f4f",
  207. "group": "landform"
  208. },
  209. "rock": {
  210. "sign": "",
  211. "color": "#4f4f4f",
  212. "group": "landform"
  213. },
  214. "stone": {
  215. "sign": "",
  216. "color": "#4f4f4f",
  217. "group": "landform"
  218. },
  219. "sinkhole": {
  220. "sign": "",
  221. "group": "landform"
  222. },
  223. "cave_entrance": {
  224. "sign": "",
  225. "group": "landform"
  226. }
  227. }
  228. }