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.

24 lines
685 B

  1. {
  2. "type": "overpass",
  3. "name:en": "Trees",
  4. "query": "node[natural=tree];",
  5. "minZoom": 17,
  6. "feature": {
  7. "title": "{% if tags.ref %}{{ tags.ref }} - {% endif %}{{ tags.name|default('Tree') }}",
  8. "description": "{{ tags.species }}",
  9. "body": "{{ tags.species }}",
  10. "style": {
  11. "nodeFeature": "CircleMarker",
  12. "color": "red",
  13. "fillColor": "red",
  14. "fillOpacity": 0.1,
  15. "weight": 1,
  16. "radius": 6
  17. },
  18. "marker": {
  19. "iconUrl": "img/map_pointer.png",
  20. "iconSize": [ 25, 42 ],
  21. "iconAnchor": [ 13, 42 ]
  22. }
  23. }
  24. }