← 返回 Skills 市场
travel-skills

高德地图全能版

作者 旅行技能 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
38
总下载
0
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install gaode-map-pro
功能描述
高德地图全能版技能,免申请Key即用,22项地图能力全覆盖:地理编码、逆地理编码、POI搜索、周边搜索、POI详情、输入提示、行政区划查询、驾车/公交/步行/骑行路线规划(坐标版+地址版)、天气查询、IP定位、距离测量、静态地图、坐标转换、唤端导航、唤端打车。零配置即装即用。
使用说明 (SKILL.md)

高德地图全能版

免申请Key即用的高德地图技能,22项能力覆盖地图服务全场景。零配置即装即用。

能力概览

序号 工具 说明
1 geocode 地址转经纬度坐标
2 regeocode 经纬度转详细地址
3 poi_search 关键词搜索兴趣点
4 poi_around 周边搜索兴趣点
5 poi_detail POI详情查询
6 input_tips 输入提示自动补全
7 district 行政区划查询
8 driving_route 驾车路线规划(坐标版)
9 transit_route 公交路线规划(坐标版)
10 walking_route 步行路线规划(坐标版)
11 cycling_route 骑行路线规划(坐标版)
12 driving_route_by_address 驾车路线规划(地址版)
13 transit_route_by_address 公交路线规划(地址版)
14 walking_route_by_address 步行路线规划(地址版)
15 cycling_route_by_address 骑行路线规划(地址版)
16 weather 天气查询
17 ip_location IP定位
18 distance 距离测量
19 staticmap 静态地图生成
20 coordinate_convert 坐标转换
21 schema_navi 唤端导航
22 schema_take_taxi 唤端打车

工作流程

  1. 根据用户需求判断调用哪个工具
  2. 执行 python3 scripts/gaode_map_pro.py \x3Ctool> '\x3Cjson_params>'
  3. 解析JSON输出,以自然语言回复用户

工具参数说明

geocode

地址转经纬度。参数:address(必填), city(选填)

regeocode

经纬度转地址。参数:location(必填,"lng,lat"), extensions(选填,base/all)

poi_search

关键词搜索POI。参数:keywords(必填), city(选填), types(选填), offset(选填), page(选填), citylimit(选填)

poi_around

周边搜索POI。参数:location(必填), keywords(必填), radius(选填,默认3000), offset(选填), page(选填), types(选填)

poi_detail

POI详情。参数:id(必填)

input_tips

输入提示。参数:keywords(必填), city(选填), datatype(选填,默认all)

district

行政区划查询。参数:keywords(选填), subdistrict(选填,默认1)

driving_route

驾车路线。参数:origin(必填,"lng,lat"), destination(必填,"lng,lat"), strategy(选填), waypoints(选填)

transit_route

公交路线。参数:origin(必填), destination(必填), city(必填), cityd(选填,跨城必填)

walking_route

步行路线。参数:origin(必填), destination(必填)

cycling_route

骑行路线。参数:origin(必填), destination(必填)

driving_route_by_address

驾车路线(地址版)。参数:origin_address(必填), destination_address(必填), origin_city(选填), destination_city(选填)

transit_route_by_address

公交路线(地址版)。参数:origin_address(必填), destination_address(必填), city(必填), cityd(选填), origin_city(选填), destination_city(选填)

walking_route_by_address

步行路线(地址版)。参数:origin_address(必填), destination_address(必填), origin_city(选填), destination_city(选填)

cycling_route_by_address

骑行路线(地址版)。参数:origin_address(必填), destination_address(必填), origin_city(选填), destination_city(选填)

weather

天气查询。参数:city(必填,城市名或adcode), extensions(选填,base实况/all预报)

ip_location

IP定位。参数:ip(选填,不填则定位当前IP)

distance

距离测量。参数:origins(必填,起点经纬度,多个用|分隔), destination(必填,终点经纬度), type(选填,0直线/1驾车/3步行)

staticmap

静态地图。参数:location(选填,中心点), zoom(选填,3-17), size(选填,默认400*400), scale(选填,1/2), markers(选填,标记点), labels(选填,标签), paths(选填,路线), traffic(选填)

coordinate_convert

坐标转换。参数:coords(必填,经纬度), coordsys(必填,gps/baidu/mapbar/autonavi)

schema_navi

唤端导航。参数:lon(必填,终点经度), lat(必填,终点纬度), name(选填,终点名称), dev(选填,0高德坐标/1GPS)

schema_take_taxi

唤端打车。参数:slon(选填,起点经度), slat(选填,起点纬度), sname(选填,起点名称), dlon(必填,终点经度), dlat(必填,终点纬度), dname(选填,终点名称)

使用示例

# 地理编码
python3 scripts/gaode_map_pro.py geocode '{"address": "广州塔", "city": "广州"}'

# POI搜索
python3 scripts/gaode_map_pro.py poi_search '{"keywords": "肯德基", "city": "广州"}'

# 驾车路线(地址版)
python3 scripts/gaode_map_pro.py driving_route_by_address '{"origin_address": "广州塔", "destination_address": "珠江新城", "origin_city": "广州"}'

# 天气查询(含预报)
python3 scripts/gaode_map_pro.py weather '{"city": "广州", "extensions": "all"}'

# 距离测量
python3 scripts/gaode_map_pro.py distance '{"origins": "116.48,39.99", "destination": "116.40,39.91", "type": "1"}'

# 唤端导航
python3 scripts/gaode_map_pro.py schema_navi '{"lon": "116.397428", "lat": "39.90923", "name": "天安门"}'

# 唤端打车
python3 scripts/gaode_map_pro.py schema_take_taxi '{"dlon": "116.397428", "dlat": "39.90923", "dname": "天安门"}'

工具联动建议

  • 模糊搜索地点:input_tips → poi_search → poi_detail
  • 地址到路线:geocode → driving_route,或直接用 driving_route_by_address
  • 定位到天气:ip_location → weather
  • 区划到POI:district → poi_search
  • 搜索到导航:poi_search → schema_navi
  • 搜索到打车:poi_search → schema_take_taxi
  • 距离预判:distance → driving_route_by_address

不能做

  • 不支持室内导航和实时公交到站
  • 步行路线最大100km,骑行最大500km
  • 静态地图为图片URL,不含交互功能
  • 唤端导航/打车生成URI,需用户在移动端点击才能跳转高德APP
  • 坐标转换仅支持转成高德坐标系,不支持高德转其他
安全使用建议
Review before installing if you may query home/work addresses, precise coordinates, travel routes, or IP-derived location. The skill should disclose the proxy data flow, validate allowed proxy hosts, and avoid current-IP lookup unless the user explicitly asks.
能力评估
Purpose & Capability
The stated map, routing, weather, IP-location, navigation, and taxi-link features match the script's capabilities, but those features handle addresses, coordinates, route endpoints, POI searches, and IP-derived location data.
Instruction Scope
Runtime instructions are narrowly scoped to invoking a local Python script with named tools. However, the documentation does not clearly require user consent before current-IP lookup and only briefly notes that navigation/taxi tools generate external app URIs.
Install Mechanism
The artifact contains only SKILL.md and a Python helper script. There are no package-install hooks, background services, or install-time mutation behavior; static scan and VirusTotal telemetry were clean.
Credentials
The helper posts all requests to a default Tencent Cloud proxy and also accepts GAODE_PROXY_URL and GAODE_PROXY_TOKEN from the environment, adding the proxy token to whichever URL is configured without host allowlisting.
Persistence & Privilege
No persistence, privilege escalation, local file indexing, or destructive behavior was found. The main privileged behavior is network access plus reading environment variables for proxy configuration.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install gaode-map-pro
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /gaode-map-pro 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- 首发版本,提供高德地图全功能版技能。 - 免申请Key、零配置,22项地图核心能力一站式集成。 - 支持地理编码、逆地理编码、POI/周边搜索及详情、输入提示、行政区划查询。 - 路线规划覆盖驾车、公交、步行、骑行(坐标/地址双版本)。 - 内置天气查询、IP定位、距离测量、静态地图、坐标转换、导航、打车等功能。 - 提供详细参数说明、使用示例与常用工具联动建议。
元数据
Slug gaode-map-pro
版本 1.0.0
许可证 MIT-0
累计安装 2
当前安装数 1
历史版本数 1
常见问题

高德地图全能版 是什么?

高德地图全能版技能,免申请Key即用,22项地图能力全覆盖:地理编码、逆地理编码、POI搜索、周边搜索、POI详情、输入提示、行政区划查询、驾车/公交/步行/骑行路线规划(坐标版+地址版)、天气查询、IP定位、距离测量、静态地图、坐标转换、唤端导航、唤端打车。零配置即装即用。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 38 次。

如何安装 高德地图全能版?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install gaode-map-pro」即可一键安装,无需额外配置。

高德地图全能版 是免费的吗?

是的,高德地图全能版 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

高德地图全能版 支持哪些平台?

高德地图全能版 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 高德地图全能版?

由 旅行技能(@travel-skills)开发并维护,当前版本 v1.0.0。

💬 留言讨论