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.

26 lines
761 B

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. {
  2. "type": "overpass",
  3. "name": {
  4. "en": "Maestro Payment",
  5. "nl": "Maestro Betaling"
  6. },
  7. "query": {
  8. "15": [
  9. "(node[\"payment:maestro\"];",
  10. "way[\"payment:maestro\"];",
  11. "relation[\"payment:maestro\"];)"
  12. ]
  13. },
  14. "feature": {
  15. "pre": [
  16. "{% if attribute(tags, 'payment:maestro') == 'yes' %}",
  17. " {% set payment_color='green' %}",
  18. "{% elseif attribute(tags, 'payment:maestro') == 'no' %}",
  19. " {% set payment_color='red' %}",
  20. "{% else %}",
  21. " {% set payment_color='white' %}",
  22. "{% endif %}"
  23. ],
  24. "markerSymbol": "{{ markerPointer({\"fillColor\":payment_color})|raw }}"
  25. }
  26. }