Skills gaode_map
A skill to interact with Gaode Map (AMap) for location search and route planning.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/279458179/gaodemapskill" ~/.claude/skills/openclaw-skills-gaode-map && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/279458179/gaodemapskill" ~/.openclaw/skills/openclaw-skills-gaode-map && rm -rf "$T"
manifest:
skills/279458179/gaodemapskill/SKILL.mdsource content
Gaode Map Skill
This skill allows you to search for places and plan routes using Gaode Map (AMap) API.
Usage
You can use the
amap_tool.py script to perform actions. The API Key is expected to be in the AMAP_API_KEY environment variable.
Place Search
Search for POIs (Points of Interest).
Command:
python amap_tool.py search --keywords "<keywords>" [--city "<city>"]
Parameters:
: The search query (e.g., "restaurants", "gas station").keywords
: (Optional) The city to search in.city
Route Planning
Plan a route between two locations.
Command:
python amap_tool.py route --origin "<origin>" --destination "<destination>" [--mode "<mode>"] [--city "<city>"]
Parameters:
: Start location (address or coordinates "lon,lat").origin
: End location (address or coordinates "lon,lat").destination
: (Optional) Route mode:mode
(default),driving
,walking
,bicycling
.transit
: (Optional) City name (required forcity
mode, or to help geocoding).transit
Examples
User: "Find coffee shops in Shanghai." Action:
python amap_tool.py search --keywords "coffee shop" --city "Shanghai"
User: "Show me the driving route from Beijing West Station to the Forbidden City." Action:
python amap_tool.py route --origin "Beijing West Station" --destination "Forbidden City" --mode "driving" --city "Beijing"