gpt4 book ai didi

android - 通过提供 GPS 坐标将 Google 导航启动到特定位置

转载 作者:太空狗 更新时间:2023-10-29 14:31:18 25 4
gpt4 key购买 nike

我想知道是否可以通过从应用程序提供该位置的 GPS 坐标来将 Google 导航启动到特定位置。

最佳答案

如果您想通过提供纬度和经度坐标从您的应用程序启动 google turn by turn 导航,那么这里是代码:

public void launchNavigation(){
String location = mLat + "," + mLng;
Uri gmmIntentUri = Uri.parse("google.navigation:q="+location);
Intent mapIntent = new Intent(Intent.ACTION_VIEW, gmmIntentUri);
mapIntent.setPackage("com.google.android.apps.maps");
startActivity(mapIntent);
}

基本上,在 Uri 参数中,您可以传递街道地址或 Lat,Lng,如下所示:

google.navigation:q=a+street+address
google.navigation:q=latitude,longitude

我希望这可以帮助遇到同样问题的人,因为我想您的问题早就可以解决了。

关于android - 通过提供 GPS 坐标将 Google 导航启动到特定位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6517997/

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