Google地图中两点之间的多条路线

时间:2014-03-15 16:45:29

标签: android

嗨朋友们我制作了一个基于Android的应用程序,用户可以在其中看到两个位置点之间的多条可能路径,这意味着在Android中可能有源到目的地吗?

1 个答案:

答案 0 :(得分:3)

是您可以使用Google Direction API在两个位置之间绘制多条路径

as:

  

http://maps.googleapis.com/maps/api/directions/json?origin=SourcePoint&destination=DestinationPoint&sensor=false&units=metric&alternatives=true

此处 alternatives = true 是提供多条路径的属性。如果将此属性设置为false,则将提供一个路由

您也可以参考此https://developers.google.com/maps/documentation/directions/

以及这些:1)How to Draw Route in Google Maps API V2 from my location

2)Answer : Draw path between two points using Google Maps Android API v2