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

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