在线地图中获取星巴克全国门店位置

使用高德地图的POI搜索接口进行搜索,通过指定关键词为"星巴克",结合城市等参数来获取星巴克分店的位置信息。以下是一个代码,


import requests

def amap_place_search(query, city):
    url = "https://restapi.amap.com/v3/place/text"
    params = {
        "keywords": query,
        "city": city,
        "output": "json",
        "key": "你的开发者密钥"
    }

    response = requests.get(url, params=params)
    data = response.json()

    if data["status"] == "1" and data["count"] != "0":
        pois = data["pois"]
        for poi in pois:
            name = poi["name"]
            location = poi["location"].split(",")
            lng = float(location[0])
            lat = float(location[1])

            # 处理星巴克位置信息,根据需求进行保存或进一步处理
            # ...

            print(f"名称:{name}")
            print(f"经度:{lng}")
            print(f"纬度:{lat}")
            print("--------")
    else:
        print("未找到相关结果或请求失败")

# 指定搜索关键词和城市
query = "星巴克"
city = "全国"

# 调用函数进行搜索并处理结果
amap_place_search(query, city)
 

在上述代码中,通过调用`amap_place_search`函数,传入关键词"星巴克"和城市进行搜索。你可以根据需要修改`query`和`city`变量。

获取到每个星巴克分店的经纬度后,可以根据需求进行相应的处理,比如保存到文件或进行进一步的操作。

请注意,在实际使用时,你需要将"你的开发者密钥"替换为你申请到的真实密钥。

你可能感兴趣的:(数据库)