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.

154 lines
4.1 KiB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. {
  2. "type": "overpass",
  3. "name": {
  4. "ast": "Compres",
  5. "cs": "Obchody",
  6. "de": "Einkauf",
  7. "el": "Αγορές",
  8. "en": "Shopping",
  9. "et": "Ostmine",
  10. "fr": "Magasins/Boutiques",
  11. "hu": "Vásárlás",
  12. "it": "Acquisti",
  13. "ja": "ショッピング",
  14. "nl": "Winkelen",
  15. "pl": "Zakupy",
  16. "pt": "Compras",
  17. "pt-br": "Compras",
  18. "ro": "Cumpărături",
  19. "ru": "Покупки",
  20. "uk": "Торгівля"
  21. },
  22. "query": {
  23. "14": "(node[shop~'^(mall|department_store)$'];way[shop~'^(mall|department_store)$'];relation[shop~'^(mall|department_store)$'];);",
  24. "16": "(node[shop];way[shop];relation[shop];);"
  25. },
  26. "feature": {
  27. "pre": "{% set shop0 = tags.shop|split(';')[0] %}{% set current = const.default %}{% for v in const.shops %}{% if shop0 in v.types %}{% set current = v %}{% endif %}{% endfor %}",
  28. "description": "{{ tagTransList('shop', tags.shop) }}",
  29. "markerSign": "{% set c = current.sign %}{% if c|slice(0, 3) == 'fa-' %}<i class=\"fa {{ c }}\"></i>{% else %}{{ c|raw }}{% endif %}"
  30. },
  31. "const": {
  32. "default": {
  33. "sign": "fa-shopping-bag"
  34. },
  35. "shops": [
  36. {
  37. "types": [
  38. "alcohol",
  39. "beverages"
  40. ],
  41. "sign": "fa-beer"
  42. },
  43. {
  44. "types": [
  45. "baby_goods"
  46. ],
  47. "sign": "&#128700;"
  48. },
  49. {
  50. "types": [
  51. "bag",
  52. "general"
  53. ],
  54. "sign": "fa-shopping-bag"
  55. },
  56. {
  57. "types": [
  58. "bakery",
  59. "confectionery",
  60. "pastry"
  61. ],
  62. "sign": "fa-birthday-cake"
  63. },
  64. {
  65. "types": [
  66. "boutique",
  67. "clothes",
  68. "fabric",
  69. "fashion",
  70. "leather",
  71. "sewing",
  72. "tailor"
  73. ],
  74. "sign": "&#128090;"
  75. },
  76. {
  77. "types": [
  78. "butcher",
  79. "cheese",
  80. "chocolate",
  81. "deli",
  82. "dairy",
  83. "farm",
  84. "greengrocer",
  85. "pasta",
  86. "spices"
  87. ],
  88. "sign": "fa-cutlery"
  89. },
  90. {
  91. "types": [
  92. "coffee",
  93. "tea"
  94. ],
  95. "sign": "fa-coffee"
  96. },
  97. {
  98. "types": [
  99. "convenience"
  100. ],
  101. "sign": "fa-shopping-basket"
  102. },
  103. {
  104. "types": [
  105. "department_store",
  106. "mall"
  107. ],
  108. "sign": "fa-building"
  109. },
  110. {
  111. "types": [
  112. "hairdresser"
  113. ],
  114. "sign": "&#128113;"
  115. },
  116. {
  117. "types": [
  118. "ice_cream"
  119. ],
  120. "sign": "&#127848;"
  121. },
  122. {
  123. "types": [
  124. "jewelry"
  125. ],
  126. "sign": "&#128141;"
  127. },
  128. {
  129. "types": [
  130. "kiosk"
  131. ],
  132. "sign": "fa-newspaper-o"
  133. },
  134. {
  135. "types": [
  136. "shoes"
  137. ],
  138. "sign": "&#128095;"
  139. },
  140. {
  141. "types": [
  142. "supermarket"
  143. ],
  144. "sign": "fa-shopping-cart"
  145. },
  146. {
  147. "types": [
  148. "watches"
  149. ],
  150. "sign": "&#8986;"
  151. }
  152. ]
  153. }
  154. }