使用Google Map API进行语音控制的tbt导航

时间:2011-12-10 20:40:11

标签: android google-maps-api-3

我正在编写一个应用程序,我想引导用户从地图上的当前位置到特定点。如何在我的Android应用程序中使用Google Map API进行带语音控制的转弯导航呢? 我可以从我的应用启动Google导航并将位置信息传递给它吗?

1 个答案:

答案 0 :(得分:0)

您可以尝试此操作来打开Goog​​le地图应用。

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);