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.

77 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. "pt-br": "Comunicação",
  17. "ro": "Comunicatii",
  18. "ru": "Услуги связи",
  19. "uk": "Телекомунікації"
  20. },
  21. "query": {
  22. "13": [
  23. "(",
  24. "node[amenity~'^(post_office|internet_cafe)$'];",
  25. "way[amenity~'^(post_office|internet_cafe)$'];",
  26. "relation[amenity~'^(post_office|internet_cafe)$'];",
  27. ");"
  28. ],
  29. "16": [
  30. "(node[amenity~'^(post_office|internet_cafe|post_box|telephone)$'];",
  31. "way[amenity~'^(post_office|internet_cafe)$'];",
  32. "relation[amenity~'^(post_office|internet_cafe)$'];",
  33. ");"
  34. ]
  35. },
  36. "feature": {
  37. "title": "{{ localizedTag(tags, 'name') |default(localizedTag(tags, 'operator')) |default(tagTrans('amenity', tags.amenity)) }}",
  38. "description": "{{ tagTrans('amenity', tags.amenity) }}",
  39. "body": "{% if tags.operator %}{{ keyTrans('operator') }}: {{ localizedTag(tags, 'operator') }}<br/>{% endif %}",
  40. "markerSign": [
  41. "{% set data = const[tags.amenity] %}",
  42. "{% if data %}",
  43. "{{ data.sign|raw }}",
  44. "{% endif %}"
  45. ]
  46. },
  47. "info": [
  48. "<table>",
  49. "{% for value, data in const %}",
  50. "{% if data.zoom <= map.zoom %}",
  51. " <tr>",
  52. " <td>{{ markerCircle({})|raw }}<div class='sign'>{{ data.sign|raw }}</div></td>",
  53. " <td>{{ tagTrans('amenity', value) }}</td>",
  54. " </tr>",
  55. "{% endif %}",
  56. "{% endfor %}",
  57. "</table>"
  58. ],
  59. "const": {
  60. "post_office": {
  61. "sign": "<img src='maki:post?size=15'>",
  62. "zoom": 13
  63. },
  64. "post_box": {
  65. "sign": "<img src='maki:post?size=11'>",
  66. "zoom": 16
  67. },
  68. "internet_cafe": {
  69. "sign": "<i class='fa fa-laptop' aria-hidden='true'></i>",
  70. "zoom": 13
  71. },
  72. "telephone": {
  73. "sign": "<img src='maki:telephone'>",
  74. "zoom": 16
  75. }
  76. }
  77. }