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