在这里,我尝试使用以下代码段来显示地图上的行车路线或路线
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);
答案 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);