通过提供 GPS 坐标启动 Google 导航至特定位置

发布于 2024-11-18 04:11:08 字数 54 浏览 2 评论 0原文

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

I want know if it's possible to launch the Google navigation to a specific location by providing GPS coordinates of that location from an application.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

生寂 2024-11-25 04:11:08

如果您的意思是您想通过提供纬度和位置来从您的应用程序启动谷歌转弯导航。经度坐标,然后这里是代码:

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

我希望这可以帮助遇到相同问题的人,因为我猜您的问题很久以前就已经解决了。

If you mean you want to launch google turn by turn navigation from your application by providing latitude & longitude coordinates, then here is the code:

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

Basically in the Uri parameter you can pass either street address or Lat,Lng like the following:

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

I hope this could help someone with the same problem as I guess your problem would have been resolved long ago.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文