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.

76 lines
2.4 KiB

  1. {
  2. "type": "overpass",
  3. "name": {
  4. "ast": "Comunicaciones",
  5. "ca": "Comunicacions",
  6. "cs": "Komunikace",
  7. "de": "Kommunikation",
  8. "el": "Επικοινωνίες",
  9. "en": "Communication",
  10. "et": "Kommunikatsioon",
  11. "fr": "Communication",
  12. "hu": "Kommunikácó",
  13. "it": "Communicazioni",
  14. "ja": "交流",
  15. "nl": "Communicatie",
  16. "ro": "Comunicatii",
  17. "ru": "Услуги связи",
  18. "uk": "Телекомунікації"
  19. },
  20. "query": {
  21. "13": [
  22. "(",
  23. "node[amenity~'^(post_office|internet_cafe)$'];",
  24. "way[amenity~'^(post_office|internet_cafe)$'];",
  25. "relation[amenity~'^(post_office|internet_cafe)$'];",
  26. ");"
  27. ],
  28. "16": [
  29. "(node[amenity~'^(post_office|internet_cafe|post_box|telephone)$'];",
  30. "way[amenity~'^(post_office|internet_cafe)$'];",
  31. "relation[amenity~'^(post_office|internet_cafe)$'];",
  32. ");"
  33. ]
  34. },
  35. "feature": {
  36. "title": "{{ localizedTag(tags, 'name') |default(localizedTag(tags, 'operator')) |default(tagTrans('amenity', tags.amenity)) }}",
  37. "description": "{{ tagTrans('amenity', tags.amenity) }}",
  38. "body": "{% if tags.operator %}{{ keyTrans('operator') }}: {{ localizedTag(tags, 'operator') }}<br/>{% endif %}",
  39. "markerSign": [
  40. "{% set data = const[tags.amenity] %}",
  41. "{% if data %}",
  42. "{{ data.sign|raw }}",
  43. "{% endif %}"
  44. ]
  45. },
  46. "info": [
  47. "<table>",
  48. "{% for value, data in const %}",
  49. "{% if data.zoom <= map.zoom %}",
  50. " <tr>",
  51. " <td>{{ markerCircle({})|raw }}<div class='sign'>{{ data.sign|raw }}</div></td>",
  52. " <td>{{ tagTrans('amenity', value) }}</td>",
  53. " </tr>",
  54. "{% endif %}",
  55. "{% endfor %}",
  56. "</table>"
  57. ],
  58. "const": {
  59. "post_office": {
  60. "sign": "<img src='maki:post?size=15'>",
  61. "zoom": 13
  62. },
  63. "post_box": {
  64. "sign": "<img src='maki:post?size=11'>",
  65. "zoom": 16
  66. },
  67. "internet_cafe": {
  68. "sign": "<i class='fa fa-laptop' aria-hidden='true'></i>",
  69. "zoom": 13
  70. },
  71. "telephone": {
  72. "sign": "<img src='maki:telephone'>",
  73. "zoom": 16
  74. }
  75. }
  76. }