我正在编写一个应用程序,我想引导用户从地图上的当前位置到特定点。如何在我的Android应用程序中使用Google Map API进行带语音控制的转弯导航呢? 我可以从我的应用启动Google导航并将位置信息传递给它吗?
答案 0 :(得分:0)
您可以尝试此操作来打开Google地图应用。
String url = "http://maps.google.com/maps?saddr="+startLat+","+startLong+"&daddr="+endLat+","+endLong;
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse(url));
startActivity(intent);