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.

28 lines
750 B

  1. {
  2. "type": "overpass",
  3. "name": {
  4. "en": "Street Lighting",
  5. "de": "Straßenbeleuchtung",
  6. "nl": "Straatverlichting"
  7. },
  8. "query": {
  9. "16": "(way[highway];)",
  10. "18": "(way[highway];node[highway=street_lamp];)"
  11. },
  12. "feature": {
  13. "markerSymbol": "",
  14. "style": {
  15. "color": [
  16. "{% if attribute(tags, 'lit') == \"yes\" %}",
  17. "yellow",
  18. "{% elseif attribute(tags, 'highway') == \"street_lamp\" %}",
  19. "yellow",
  20. "{% elseif attribute(tags, 'lit') == \"no\" %}",
  21. "black",
  22. "{% else %}",
  23. "grey",
  24. "{% endif %}"
  25. ]
  26. }
  27. }
  28. }