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

{
"type": "overpass",
"name": {
"en": "Visa Payment",
"nl": "Visa Betaling",
"de": "Visa Zahlung"
},
"query": {
"15": [
"(node[\"payment:visa\"];",
"way[\"payment:visa\"];",
"relation[\"payment:visa\"];)"
]
},
"feature": {
"pre": [
"{% if attribute(tags, 'payment:visa') == 'yes' %}",
" {% set payment_color='green' %}",
"{% elseif attribute(tags, 'payment:visa') == 'no' %}",
" {% set payment_color='red' %}",
"{% else %}",
" {% set payment_color='white' %}",
"{% endif %}"
],
"markerSign": "<img width='15' data-src='img/visa.png'>",
"markerSymbol": "{{ markerPointer({\"fillColor\":payment_color})|raw }}"
}
}