Google Distance Api以特定的纬度经度返回零

时间:2014-01-15 08:02:51

标签: php google-maps

我向Google API提供原始纬度/经度和目标纬度/经度。

但作为回应,它返回零。

提供坐标:

Origin       = 70.7417,-22.6583 

Destination  = 48.8602,2.34107 

输出结果:

This XML file does not appear to have any style information associated with it. 
The document tree is shown below.

    <DirectionsResponse>
    <status>ZERO_RESULTS</status>
    </DirectionsResponse>

来源链接:

https://maps.google.com/maps/api/directions/xml?language=fr&origin=70.7417,-22.6583&destination=48.8602,2.34107&sensor=false

有谁能告诉我我在哪里犯了错误?

最初的积分是Danemark | Constable Pynt | 3985 | Gronland TO France Paris 75001 Ile-de-France

2 个答案:

答案 0 :(得分:1)

“ZERO_RESULTS”表示地理编码成功但未返回任何结果。如果地理编码在远程位置传递了不存在的地址或latlng,则可能会发生这种情况。

请尝试检查您的坐标是否有效。

答案 1 :(得分:1)

我的猜测是谷歌地图试图找到两点之间的驾驶路线。由于您提供的地点位于格陵兰和法国,没有直接连接,因此Google无法找到路线,因此回复ZERO_RESULTS

来自documentation

的引用
ZERO_RESULTS indicates no route could be found between the origin and destination.