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

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