Google Maps HTTP API for driving and walking directions

十年热恋 提交于 2019-12-18 13:33:29

问题


Do you know how I can get walking directions from Google by giving two specific coordinates? How can I send simple HTTP GET requests and have the result in a KML file?

I don't want to geocode, but get the driving directions as the KML file returned by this method:

http://www.gringod.com/2008/02/26/save-google-maps-driving-directions/


回答1:


There is no documented and approved method at the moment to access the Google Maps Directions API via an HTTP request (update: Google added walking and driving directions via web services in May, 2010).

Nevertheless, an undocumented method that returns a JSON output is the following:

http://maps.google.com/maps/nav?q=from:London%20to:Dover

The format of the q parameter should be from:xxx%20to:yyy. Replace xxx and yyy with the start and destination respectively. You can use a latitude and a longitude instead of full addresses.

By default this request returns driving directions. To get walking directions you can add the optional parameter dirflg=w to the query-string. (Source)

Note that not only this is undocumented, but it may also violate the restrictions 10.1 and 10.5 of the Google Maps API Terms and Conditions.

You may also be interesting in checking out the following articles:

  • Getting distance using GDirections via URL
  • Calculate driving directions using PHP?
  • Retrieve driving directions from google maps with server-side HTTP calls and show results with static maps for WAP
  • Google Maps and Directions, REST Interface?



回答2:


Google added directions via web services in May, 2010:

http://code.google.com/apis/maps/documentation/directions/

Directions are returned in either XML or JSON format.

They also have geocoding, elevation, and places available.



来源:https://stackoverflow.com/questions/2041601/google-maps-http-api-for-driving-and-walking-directions

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!