如何显示我的位置到目的地之间的行车路线

时间:2016-09-28 06:35:32

标签: android google-maps

在这里,我尝试使用以下代码段来显示地图上的行车路线或路线

Intent intent = new Intent(android.content.Intent.ACTION_VIEW, 
Uri.parse("http://maps.google.com/maps?saddr=20.344,34.34&daddr=20.5666,45.345"));
startActivity(intent);

1 个答案:

答案 0 :(得分:0)

要从当前位置开始导航,请删除saddr参数和值。

Intent intent = new Intent(android.content.Intent.ACTION_VIEW, 
            Uri.parse("http://maps.google.com/maps?daddr=20.5666,45.345"));
startActivity(intent);