Some examples how to develop own categories.
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.

16 lines
328 B

  1. query:
  2. 15: nwr[amenity=fountain]
  3. 17: |
  4. (
  5. nwr[amenity=fountain];
  6. nwr[amenity=drinking_water];
  7. )
  8. feature:
  9. description: |
  10. {{ tagTrans('amenity', tags.amenity) }}
  11. markerSign: |
  12. {% if tags.amenity == 'fountain' %}
  13. {% elseif tags.amenity == 'drinking_water' %}
  14. 🚰
  15. {% endif %}