search_nearby
Search for places near specific GPS coordinates. Filter by type such as restaurant, cafe, or hotel, and set the search radius.
Instructions
Search for places near specific coordinates.
Use this when you have GPS coordinates and want to find places nearby. Great for "find restaurants near me" type queries.
Args: latitude: Latitude of the center point (e.g., 42.4531) longitude: Longitude of the center point (e.g., 18.5375) radius_meters: Search radius in meters (default 1000, max 50000) place_type: Optional type filter like "restaurant", "cafe", "hotel", "gas_station", "pharmacy", "hospital", etc. max_results: Number of results to return (1-20). Default 10.
Returns: Dictionary with center point, radius, and list of nearby places.
Example: search_nearby(42.4531, 18.5375, radius_meters=500, place_type="cafe")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| latitude | Yes | ||
| longitude | Yes | ||
| radius_meters | No | ||
| place_type | No | ||
| max_results | No |