gpt4 book ai didi

android - 在 Android 上使用 Google map 进行路线规划

转载 作者:行者123 更新时间:2023-11-30 04:13:20 26 4
gpt4 key购买 nike

我正在构建一个 Android 应用程序,我想实现 Google Maps Api 以启用从 A 点到 B 点的路由。到目前为止,我已经成功实现了 Google map 并将其显示在应用程序上,如果有人可以的话解释一下如何添加“方向”,那就太好了。

最佳答案

使用 Intent

String uri = "http://maps.google.com/maps?saddr=" +sourcelat+","+sourcelon+"&daddr="+destlat+","+destlon;
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse(uri));
intent.setClassName("com.google.android.apps.maps", "com.google.android.maps.MapsActivity");
startActivity(intent);

另一个使用代码下载sourcecode

关于android - 在 Android 上使用 Google map 进行路线规划,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10469749/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com