【python】google的经纬度定位查询API

功能:根据经纬度,定位相应位置。

使用google 地图 API,每日有限量使用。

from urllib.request import urlopen
from bs4 import BeautifulSoup

def query(lat,loc):
    url = "http://maps.google.cn/maps/api/geocode/xml?latlng=%.6f,%.6f&sensor=false"%(lat,loc)
    html = urlopen(url)
    bsObj = BeautifulSoup (html, "html.parser")
    addr = bsObj.find('formatted_address')
    return addr.get_text()

 

输入经纬度,返回对应的位置信息。

 

 

 

 

 

 

 

你可能感兴趣的:(Python,Language,Python开发实战)