显示已安装应用程序中两点之间的路径

时间:2010-09-08 10:47:55

标签: android google-maps maps

如何showActivity将显示两点之间的路线。

这将在Android手机上启动已安装的地图应用程序。

1 个答案:

答案 0 :(得分:2)

找到了怎么做。

Uri uri = Uri.parse("http://maps.google.com/maps?f=d&saddr=startLat%20startLng&daddr=endLat%20endLng&hl=en");
Intent it = new Intent(Intent.ACTION_VIEW,URI);
startActivity(it);

其中startLat,startLng,endLat,endLng - coordinates。(38.899533,-77.036476,....)