get_nearby_locations
Find nearby hotels, restaurants, or attractions based on specific latitude and longitude coordinates to enhance vacation planning with TripAdvisor data.
Instructions
Find locations near a specific latitude and longitude
Args:
latitude: Latitude coordinate
longitude: Longitude coordinate
category: Optional category filter (e.g., "hotels", "restaurants", "attractions")
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | ||
latitude | Yes | ||
longitude | Yes |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Category"
},
"latitude": {
"title": "Latitude",
"type": "number"
},
"longitude": {
"title": "Longitude",
"type": "number"
}
},
"required": [
"latitude",
"longitude"
],
"title": "get_nearby_locationsArguments",
"type": "object"
}