我需要帮助:我正在使用Google Maps跟踪API开发应用程序。我无法使用Google Maps跟踪API。我正在使用the documentation。
在文档中有:
* 请求和响应格式
API接受请求并以JavaScript Object Notation(JSON)格式返回响应。 所有请求都是使用HTTP POST请求进行的。
基本路径
API的基本路径是:https://www.googleapis.com/tracks/v1/path/to/method *
如何使用Google Maps跟踪API导入地图?或者如何使用Google Maps跟踪API显示地图?
例如,使用Google Maps API v3,此代码有效:
src = 'https://maps.googleapis.com/maps/api/js?key=myKey&sensor=true';
我认为下面的代码是正确的但不起作用。
src = 'https://www.googleapis.com/tracks/v1/path/to/method?key=myKey&sensor=true';
感谢您的帮助。