Google Map附近的Python搜索

时间:2015-03-25 05:36:53

标签: python json google-maps google-maps-api-3

我正在尝试在附近搜索python中的学校,学院和培训机构 我的输入为半径用户的纬度用户的经度搜索字符串

我想在json中得到结果。 我尝试了下面的代码。但它只给出我给出的位置的地址。有没有办法实现这一目标。没有API密钥将更为可取。

import requests
lat=12.967724
lon=77.628101
Search="hospital"
base = "http://maps.googleapis.com/maps/api/geocode/json?"
params = "latlng={lat},{lon}&sensor={sen}&q={search}".format(lat=12.957724, lon=99.628101, sen=False,search=Search)
url = "{base}{params}".format(base=base, params=params)
print url
response = requests.get(url)
responsej = response.json()
address = responsej[u'results'][0][u'formatted_address']
print address

1 个答案:

答案 0 :(得分:1)

地理编码器处理地址。对于附近的搜索,请使用the places API