maps_around_search
Search for points of interest within a specified radius using location coordinates and keywords to find nearby businesses, landmarks, and services.
Instructions
周边搜,根据用户传入关键词以及坐标location,搜索出radius半径范围的POI
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| location | Yes | ||
| radius | No | 1000 | |
| keywords | No |
Input Schema (JSON Schema)
{
"properties": {
"keywords": {
"default": "",
"title": "Keywords",
"type": "string"
},
"location": {
"title": "Location",
"type": "string"
},
"radius": {
"default": "1000",
"title": "Radius",
"type": "string"
}
},
"required": [
"location"
],
"type": "object"
}