map-search
SKILL.md
🗺️ Map Search Skill
多地图聚合搜索工具,支持高德、百度、腾讯。
核心代码
#!/usr/bin/env python3
"""地图搜索工具"""
import os
import json
import requests
# ========== 配置路径 ==========
CONFIG_PATH = os.path.expanduser("~/.config/openclaw/map_config.json")
# ========== 读取配置函数 ==========