Android代码,用于显示行车路线并根据用户/设备移动更新路线

时间:2012-12-20 07:29:55

标签: android api google-maps android-2.3-gingerbread

大家好,我正在制作一份需要行车路线的应用程序。与谷歌提供的导航功能相同。但我无法找到任何解决方案。如果有人知道可以在Android应用程序中使用的谷歌导航系统的替代品,那么请帮助我

1 个答案:

答案 0 :(得分:1)

这就是我正在使用的,它实际上是谷歌导航。

        Intent intent = new Intent(android.content.Intent.ACTION_VIEW, 
Uri.parse("http://maps.google.com/maps?saddr="+latitude_cur+","+longitude_cur+"&daddr="+latitude+","+longitude));
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addCategory(Intent.CATEGORY_LAUNCHER );     
intent.setClassName("com.google.android.apps.maps", "com.google.android.maps.MapsActivity");
startActivity(intent);