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.

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