I would like to find the geolocation (lat/lon) of a given full address using OverpassAPI.
[out:json];
(
node["addr:street"="Hauptstraße"]["addr:housenumber"="1"]["addr:postcode"="4020"]["addr:city"="Linz"]["addr:country"="Austria"];
);
out center;
Sadly, this returns empty. But it is a full address. I wonder, how to reliably query a given full address over OverpassAPI? I would like to include everything a user provides: street, housenumber, postcode, city and country to be as unequivocal as possible.