在Android应用程序中逐个集成语音导航

时间:2015-03-03 08:40:05

标签: android google-maps navigation text-to-speech voice

我想在我的Android应用程序中集成转弯导航。但是在Google地图和导航中,应该有语音输出来引导用户转动,保持直线行走等,从src到目的地。这可能吗 ?如果是,请给我一个教程或一些关于如何做到这一点的想法。谢谢!

1 个答案:

答案 0 :(得分:-1)

如果您想计算路线,可以使用Travel Modes

另外,您可以按方向启动Google地图:

Intent intent = new Intent(android.content.Intent.ACTION_VIEW, 
Uri.parse("http://maps.google.com/maps?saddr=X1,Y1&daddr=X2,Y2"));
startActivity(intent);