gpt4 book ai didi

android - 谷歌地图安卓方向

转载 作者:行者123 更新时间:2023-11-29 15:18:32 24 4
gpt4 key购买 nike

我正在使用以下代码从我的具有驾驶模式的应用中打开谷歌地图。

 String url = "http://maps.google.com/maps?f=d&daddr="+latitude+","+longitude+"&mode=driving";
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse(url));
intent.setClassName("com.google.android.apps.maps", "com.google.android.maps.MapsActivity");
startActivity(intent);

但谷歌地图总是显示步行选项,如图所示。有什么办法可以改变这个吗?

enter image description here

最佳答案

您可以使用 &dirflg=d 获取行车路线。

所以,现在你的代码应该是这样的

String url = "http://maps.google.com/maps?f=d&daddr="+latitude+","+longitude+"&dirflg=d";
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse(url));
intent.setClassName("com.google.android.apps.maps", "com.google.android.maps.MapsActivity");
startActivity(intent);

谷歌地图方向模式:

dirflg=r - 打开“公共(public)交通”(铁路方向)- 仅在某些地区有效。

dirflg=w - 切换到步行方向 - 仍处于测试阶段。

dirflg=d - 切换到行车路线

关于android - 谷歌地图安卓方向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21452589/

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