Some examples how to develop own categories.

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 %}