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.

40 lines
1.3 KiB

  1. {
  2. "type": "overpass",
  3. "name": {
  4. "de": "Schwarzplan",
  5. "en": "Figure-ground diagram",
  6. "fr": "Empreintes",
  7. "pt-br": "Cheios e vazios"
  8. },
  9. "query": {
  10. "16": [
  11. "(",
  12. " way[building];",
  13. " relation[building];",
  14. ")"
  15. ]
  16. },
  17. "feature": {
  18. "markerSymbol": "",
  19. "listMarkerSymbol": "{{ markerPolygon({fillColor: \"#000000\", fillOpacity: 1 })|raw }}",
  20. "priority": [
  21. "{% set p = 100 %}",
  22. "{% if tags.name %}{% set p = p - 10 %}{% endif %}",
  23. "{% if tags.amenity %}{% set p = p - 1 %}{% endif %}",
  24. "{% if tags.historic %}{% set p = p - 1 %}{% endif %}",
  25. "{% if tags.culture %}{% set p = p - 1 %}{% endif %}",
  26. "{% if tags.highway %}{% set p = p - 1 %}{% endif %}",
  27. "{% if tags.railway %}{% set p = p - 1 %}{% endif %}",
  28. "{% if tags.aeroway %}{% set p = p - 1 %}{% endif %}",
  29. "{% if tags.amenity %}{% set p = p - 1 %}{% endif %}",
  30. "{% if tags.tourism %}{% set p = p - 1 %}{% endif %}",
  31. "{{ p }}"
  32. ],
  33. "style": {
  34. "width": "0",
  35. "color": "#000000",
  36. "fillColor": "#000000",
  37. "fillOpacity": "1"
  38. }
  39. }
  40. }