OverpassQL: Find nodes around point on map

I would like to get a single node from camping spots around an lat-lon position on the map.
So the query should return camping spots as nodes instead of ways.

How is this possible?
At the moment I don’t know how to begin.
This query does not return anything besides there definitely is a camping spot on that area:

way[“tourism”=“camp_site”](around:3000,47.924771, 12.136615);

Thanks in advance!

1 Like

Hi.

You need to add an out statement to get any data back. With the center option, you’ll get a node instead of ways or relations.

Something like that.

Regards.

1 Like