-2

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

4

1 回答 1

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);
于 2013-04-23T04:15:22.697 回答