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.

53 lines
1.8 KiB

  1. {
  2. "type": "overpass",
  3. "name": {
  4. "ast": "Gastronomía",
  5. "cs": "Stravování",
  6. "de": "Gastronomie",
  7. "el": "Γαστρονομία",
  8. "en": "Gastronomy",
  9. "fr": "Gastronomie",
  10. "hu": "Gasztronómia",
  11. "it": "Gastronomia",
  12. "ja": "食べ物",
  13. "nl": "Gastronomie",
  14. "pl": "Gastronomia",
  15. "ro": "Gastronomie",
  16. "ru": "Общепит",
  17. "uk": "Гастрономія"
  18. },
  19. "query": {
  20. "15": "(node[amenity~'^(bar|biergarten|cafe|fast_food|ice_cream|pub|restaurant)$'];way[amenity~'^(bar|biergarten|cafe|fast_food|ice_cream|pub|restaurant)$'];relation[amenity~'^(bar|biergarten|cafe|fast_food|ice_cream|pub|restaurant)$'];);"
  21. },
  22. "feature": {
  23. "description": "{{ tagTrans('amenity', tags.amenity) }}",
  24. "body": [
  25. "<ul>",
  26. " <li class='hasSymbol'>",
  27. " <i class=\"fa fa-cutlery\" aria-hidden=\"true\"></i>",
  28. " <span class='key'>{{ keyTrans('cuisine') }}:</span>",
  29. " <span class='value'>{{ tagTransList('cuisine', tags.cuisine)|default(trans('unknown')) }}</span>",
  30. " </li>",
  31. "</ul>"
  32. ],
  33. "markerSign": "{{ const[tags.amenity]|raw }}"
  34. },
  35. "info": [
  36. "<table>",
  37. "{% for value, sign in const %}",
  38. " <tr>",
  39. " <td>{{ markerCircle({})|raw }}<div class='sign'>{{ sign|raw }}</div></td>",
  40. " <td>{{ tagTrans('amenity', value) }}</td>",
  41. " </tr>",
  42. "{% endfor %}",
  43. "</table>"
  44. ],
  45. "const": {
  46. "bar": "&#127864;",
  47. "biergarten": "&#127867;",
  48. "cafe": "&#9749;",
  49. "fast_food": "&#127828;",
  50. "ice_cream": "&#127848;",
  51. "pub": "&#127866;",
  52. "restaurant": "&#127860;"
  53. }
  54. }