← All skills
Tencent SkillHub · Developer Tools

腾讯地图api调用技能

腾讯地图Web服务API集成,用于地点搜索、路线规划、逆地理编码等功能

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

腾讯地图Web服务API集成,用于地点搜索、路线规划、逆地理编码等功能

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, USAGE_EXAMPLES.md, package.json, scripts/tencent_map.sh, SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 10 sections Open source page

腾讯地图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密钥

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Docs1 Scripts1 Config
  • SKILL.md Primary doc
  • README.md Docs
  • USAGE_EXAMPLES.md Docs
  • scripts/tencent_map.sh Scripts
  • package.json Config