启动 Google 地图以显示道路方向

发布于 2024-11-02 08:45:02 字数 56 浏览 0 评论 0原文

如何从我自己的应用程序启动 Google 地图以显示从当前位置 (GPS) 到指定地址的道路方向?

How do I launch Google Maps from my own application to show road directions from current position (GPS) to a specified address?

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

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

发布评论

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

评论(3

兔姬 2024-11-09 08:45:02

此意图应启动适当的地图活动,并在方向输入屏幕上填充当前位置和目的地点:

Intent intent = new Intent(Intent.ACTION_VIEW, 
    Uri.parse("http://maps.google.com/maps?f=d&daddr=51.448,-0.972"));
intent.setComponent(new ComponentName("com.google.android.apps.maps", 
    "com.google.android.maps.MapsActivity"));
startActivity(intent);

This intent should launch the appropriate Maps Activity with the directions input screen populated with current location and a destination point:

Intent intent = new Intent(Intent.ACTION_VIEW, 
    Uri.parse("http://maps.google.com/maps?f=d&daddr=51.448,-0.972"));
intent.setComponent(new ComponentName("com.google.android.apps.maps", 
    "com.google.android.maps.MapsActivity"));
startActivity(intent);
剩余の解释 2024-11-09 08:45:02
Uri uri = Uri.parse("geo:40.763500,-73.979305");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent); 

尝试一下。

Uri uri = Uri.parse("geo:40.763500,-73.979305");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent); 

Try it.

凤舞天涯 2024-11-09 08:45:02

有关更多信息:

// 基于地址的地图点

Uri location = Uri.parse("geo:0,0?q=1600+Amphitheatre+Parkway,+Mountain+View,+California");
Intent mapIntent = new Intent(Intent.ACTION_VIEW, location);

// 或基于纬度/经度的地图点,如 @wegginho 的答案

Uri location = Uri.parse("geo:37.422219,-122.08364?z=14") ; // z 参数是缩放级别

For more information:

// Map point based on address

Uri location = Uri.parse("geo:0,0?q=1600+Amphitheatre+Parkway,+Mountain+View,+California");
Intent mapIntent = new Intent(Intent.ACTION_VIEW, location);

// Or map point based on latitude/longitude like the answer of @wegginho

Uri location = Uri.parse("geo:37.422219,-122.08364?z=14"); // z param is zoom level

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