I made the following query in overpass-turbo
[out:json][timeout:25];
// gather results
(
// query part for: “amenity=hospital”
node["amenity"="hospital"]({{bbox}});
way["amenity"="hospital"]({{bbox}});
relation["amenity"="hospital"]({{bbox}});
);
// print results
out body;
>;
out center;
>;
but unfortunately i do not get all the nodes displayed into geojson.io from extracted geojson data (overpass-turbo).
Any idea that could help me to get all data?
Regards