如何showActivity将显示两点之间的路线。
这将在Android手机上启动已安装的地图应用程序。
答案 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,....)