Find features near a point
find_nearbyFind OpenStreetMap features matching tag filters within a radius of a point, returning matching tags and center coordinates.
Instructions
Find OpenStreetMap features matching tag filters within a radius of a point. Returns up to 'limit' elements with their tags and a centre coordinate. Good first tool for questions like 'what cafes are near X'. For larger or unknown result sets, call count_features first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| lat | Yes | Latitude of the centre point | |
| lon | Yes | Longitude of the centre point | |
| tags | Yes | OpenStreetMap tag filters, all must match. Use "*" as the value to match any value, e.g. {"amenity": "cafe"} or {"opening_hours": "*"}. | |
| limit | No | Maximum elements to return (default 25) | |
| radius_m | No | Search radius in metres (default 500) |