diff --git a/leaflet/src/i18n/de.json b/leaflet/src/i18n/de.json index ac8ea678..e708f651 100644 --- a/leaflet/src/i18n/de.json +++ b/leaflet/src/i18n/de.json @@ -74,6 +74,7 @@ "gallery": "Gallerie", "heritage": "Kulturerbe", "historic": "Historisch", + "hotspring": "Heiße Quelle", "touristinformation": "Information", "monument": "Monument/Gedenkstätte", "monumentaltree": "Monumentaler Baum", diff --git a/leaflet/src/i18n/en.json b/leaflet/src/i18n/en.json index 8d66eccf..17d48da8 100644 --- a/leaflet/src/i18n/en.json +++ b/leaflet/src/i18n/en.json @@ -74,6 +74,7 @@ "gallery": "Gallery", "heritage": "Heritage", "historic": "Historic", + "hotspring": "Hot spring", "touristinformation": "Information", "monument": "Monument/memorial", "monumentaltree": "Monumental Tree", diff --git a/leaflet/src/overpass/overpass-presets.ts b/leaflet/src/overpass/overpass-presets.ts index 6475cb43..28e12e6e 100644 --- a/leaflet/src/overpass/overpass-presets.ts +++ b/leaflet/src/overpass/overpass-presets.ts @@ -75,6 +75,7 @@ export function getAllOverpassPresets(): OverpassPresetCategory[] { { key: "heritage", query: "(node[heritage];way[heritage];rel[heritage];)", label: i18n.t("overpass-presets.heritage") }, // Check for all historic tags but exclude those that already have their own { key: "historic", query: "(node[historic][historic!~'memorial|monument|statue|castle'];way[historic][historic!~'memorial|monument|statue|castle'];rel[historic][historic!~'memorial|monument|statue|castle'];)", label: i18n.t("overpass-presets.historic") }, + { key: "hotspring", query: "nwr[natural=hot_spring]", label: i18n.t("overpass-presets.hotspring") }, { key: "touristinformation", query: "(node[tourism=information];way[tourism=information];)", label: i18n.t("overpass-presets.touristinformation") }, { key: "monument", query: "(node[historic~'^monument$|^memorial$'];way[historic~'^monument$|^memorial$'];rel[historic~'^monument$|^memorial$'];)", label: i18n.t("overpass-presets.monument") }, { key: "monumentaltree", query: "(node[natural=tree][monument=yes];)", label: i18n.t("overpass-presets.monumentaltree") },