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
864 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. "de": "Maestro Zahlung"
  7. },
  8. "query": {
  9. "15": [
  10. "(node[\"payment:maestro\"];",
  11. "way[\"payment:maestro\"];",
  12. "relation[\"payment:maestro\"];)"
  13. ]
  14. },
  15. "feature": {
  16. "pre": [
  17. "{% if attribute(tags, 'payment:maestro') == 'yes' %}",
  18. " {% set payment_color='green' %}",
  19. "{% elseif attribute(tags, 'payment:maestro') == 'no' %}",
  20. " {% set payment_color='red' %}",
  21. "{% else %}",
  22. " {% set payment_color='white' %}",
  23. "{% endif %}"
  24. ],
  25. "markerSign": "<img height='15' data-src='img/maestro.png'>",
  26. "markerSymbol": "{{ markerPointer({\"fillColor\":payment_color})|raw }}"
  27. }
  28. }