2

我想确认一下 Google 地图网址是否:

http://maps.googleapis.com/maps/api/directions/json

可以通过 POST 参数化。我尝试在 explorer中通过 GET 使用它,如下所示:

http://maps.googleapis.com/maps/api/directions/json?origin=41.90119000000001,-87.62979000000001&destination=34.052360,-118.243560&sensor=false&units=metric&language=en-US

并且工作正常,但是如果我尝试在我的 Android 应用程序中通过 POST 使用它,请通过 OutputStream 发送此查询:

起源=19.369707,-99.266696&destination=19.022489,-98.615814&sensor=false&units=metric&language=es

我收到此错误:

{“路线”:[],“状态”:“REQUEST_DENIED”}

提前致谢。

4

1 回答 1

0

在做了一些测试后试图从以下位置检索 JSON 对象:

http://maps.googleapis.com/maps/api/directions/json

我可以假设只能通过 GET 对其进行参数化。

您不能通过 POST 参数化 Google 地图路线 URL。

我希望它可以帮助某人。

于 2012-09-26T05:37:57.397 回答