获取 google 街景 python 中的全景信息
Getting information of a panoram in google street view python
我正在使用以下url获取google街景中一个纬度-经度坐标点的重要信息。
http://maps.google.com/cbk?output=xml&ll=.....
具体来说,我需要知道google街景的真实坐标是给定的一对坐标。
在PythonAPI中没有如何获取这些信息。
例如:
http://maps.google.com/cbk?output=xml&ll=46.414382,10.013988
对于(纬度,经度)=(46.414382,10.013988)
这是我在 Python 中找到的唯一方法。
我的问题是,使用此 url 获取此信息是否合法?
非常感谢
来自Google Maps API TOS: 10.4d
No use of Content without a Google map. Unless the Maps APIs Documentation expressly permits you to do so, you will not use the Content in a Maps API Implementation without a corresponding Google map. For example, you may display Street View imagery without a corresponding Google map because the Maps APIs Documentation expressly permits this use.
我不确定你提到的端点是否明确记录在案,并且在 API 文档的某处允许在没有地图的情况下使用,如果没有,我认为 10.4d 适用并且你不能使用它。
我正在使用以下url获取google街景中一个纬度-经度坐标点的重要信息。
http://maps.google.com/cbk?output=xml&ll=.....
具体来说,我需要知道google街景的真实坐标是给定的一对坐标。
在PythonAPI中没有如何获取这些信息。
例如:
http://maps.google.com/cbk?output=xml&ll=46.414382,10.013988 对于(纬度,经度)=(46.414382,10.013988)
这是我在 Python 中找到的唯一方法。 我的问题是,使用此 url 获取此信息是否合法?
非常感谢
来自Google Maps API TOS: 10.4d
No use of Content without a Google map. Unless the Maps APIs Documentation expressly permits you to do so, you will not use the Content in a Maps API Implementation without a corresponding Google map. For example, you may display Street View imagery without a corresponding Google map because the Maps APIs Documentation expressly permits this use.
我不确定你提到的端点是否明确记录在案,并且在 API 文档的某处允许在没有地图的情况下使用,如果没有,我认为 10.4d 适用并且你不能使用它。