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
836 B

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