# Send 腾讯地图api调用技能 to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "qqmap",
    "name": "腾讯地图api调用技能",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/coreyleung-art/qqmap",
    "canonicalUrl": "https://clawhub.ai/coreyleung-art/qqmap",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/qqmap",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=qqmap",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "USAGE_EXAMPLES.md",
      "package.json",
      "scripts/tencent_map.sh",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "qqmap",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-13T01:22:17.182Z",
      "expiresAt": "2026-05-20T01:22:17.182Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=qqmap",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=qqmap",
        "contentDisposition": "attachment; filename=\"qqmap-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "qqmap"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/qqmap"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/qqmap",
    "downloadUrl": "https://openagent3.xyz/downloads/qqmap",
    "agentUrl": "https://openagent3.xyz/skills/qqmap/agent",
    "manifestUrl": "https://openagent3.xyz/skills/qqmap/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/qqmap/agent.md"
  }
}
```
## Documentation

### 腾讯地图API技能

集成腾讯地图Web服务API，提供地点搜索、路线规划、逆地理编码等功能。

### 设置

在腾讯位置服务控制台申请密钥
设置环境变量：
export TENCENT_MAP_KEY="YOUR_TENCENT_MAP_KEY"

### 1. 地点搜索 (search)

搜索指定关键词的地点信息

# 基础搜索
bash {baseDir}/scripts/tencent_map.sh search "花店" "广州"

# 带分页搜索
bash {baseDir}/scripts/tencent_map.sh search "花店" "广州" 1 20

# 指定区域搜索
bash {baseDir}/scripts/tencent_map.sh search "花店" "广州天河区"

### 2. 逆地理编码 (reverse_geocode)

根据经纬度获取详细地址信息

bash {baseDir}/scripts/tencent_map.sh reverse_geocode 23.129405 113.264287

### 3. 地理编码 (geocode)

根据地址获取经纬度坐标

bash {baseDir}/scripts/tencent_map.sh geocode "广州市天河区珠江新城"

### 4. 路线规划 (route)

计算两点间的路线信息

bash {baseDir}/scripts/tencent_map.sh route "起点地址" "终点地址" "driving|walking|transit"

### 5. 周边搜索 (around)

搜索指定坐标周围的POI

bash {baseDir}/scripts/tencent_map.sh around 23.129405 113.264287 "花店" 3000

### 参数

search: keyword, region, page_index, page_size
reverse_geocode: latitude, longitude
geocode: address
route: from, to, mode
around: latitude, longitude, keyword, radius

### 返回格式

所有命令均返回标准化的JSON格式，包含状态、结果和错误信息。

### 限制

每日调用次数限制根据腾讯地图API套餐而定
搜索结果最多返回20条/页
需要有效的腾讯地图API密钥
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: coreyleung-art
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-13T01:22:17.182Z
- Expires at: 2026-05-20T01:22:17.182Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/qqmap)
- [Send to Agent page](https://openagent3.xyz/skills/qqmap/agent)
- [JSON manifest](https://openagent3.xyz/skills/qqmap/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/qqmap/agent.md)
- [Download page](https://openagent3.xyz/downloads/qqmap)