Google方向API请求的结果为零

时间:2014-12-06 13:49:50

标签: python django google-maps google-directory-api

我在 views.py 文件中向Google方向API发送请求 问题是我的结果为零 当我尝试发送带有位置名称的请求时,它会给我方向数据,但现在我已将纬度和经度坐标放在原点字段中 这里的目的地是字符串格式的字符串(动态)
北(lat,lon)的数据也是动态的,并且在每个请求中都会发生变化 这是我的View.py文件。

print north
param_n = dict(
    origin=north,
    destination=destination,
    sensor='false',
    key='(My_API_key_and_it's working)
)

print param_n
response_n = requests.get(url=url, params=param_n)
binary_n = response_n.content
output_n = json.loads(binary_n)
print output_n

list_n = []
for route in output_n['routes']:
    for leg in route['legs']:
        for step in leg['steps']:
            # print step['html_instructions']
            # print type(step['html_instructions'])
            list_n.append(step['html_instructions'])
print list_n

北方印刷如下:

-33.85799054695955,151.16947174072266

output_n的打印如下:

{u'routes': [], u'status': u'ZERO_RESULTS'}

请告诉我为什么这个请求没有获取数据..? 不要贬低问题。

0 个答案:

没有答案