maps_text_search
Search for points of interest using keywords to find locations, addresses, and relevant information within specified cities.
Instructions
关键词搜索 API 根据用户输入的关键字进行 POI 搜索,并返回相关的信息
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| keywords | Yes | ||
| city | No | ||
| citylimit | No | false |
Input Schema (JSON Schema)
{
"properties": {
"city": {
"default": "",
"title": "City",
"type": "string"
},
"citylimit": {
"default": "false",
"title": "Citylimit",
"type": "string"
},
"keywords": {
"title": "Keywords",
"type": "string"
}
},
"required": [
"keywords"
],
"type": "object"
}