如下所示:
1
2
3
4
5
6
7
8
9
10
11
12
|
def locatebyLatLng(lat, lng, pois = 0 ):
'''
根据经纬度查询地址
'''
items = { 'location' : str (lat) + ',' + str (lng), 'ak' : '你自己申请的百度ak' , 'output' : 'json' }
res = requests.get( 'http://api.map.baidu.com/geocoder/v2/' , params = items)
result = res.json()
print (result)
print ( '--------------------------------------------' )
#result = result['result']['formatted_address'] + ',' + result['result']['sematic_description']
result = result[ 'result' ][ 'addressComponent' ][ 'city' ]
return result
|
以上这篇Python调用百度根据经纬度查询地址的示例代码就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/liyang12622/article/details/79027977