首页 >Java >java教程 >如何使用 Intent 从 Android 应用程序启动 Google 地图路线?

如何使用 Intent 从 Android 应用程序启动 Google 地图路线?

Susan Sarandon
Susan Sarandon原创
2024-12-20 19:58:13453浏览

How to Launch Google Maps Directions from Your Android App Using Intents?

使用 Android Intents 启动 Google 地图路线

需要在 Android 应用程序中显示从一个位置到另一个位置的 Google 地图路线,而不合并整个位置地图框架?使用意图使其可以实现。

如何使用意图启动 Google 地图路线:

要使用意图启动 Google 地图路线,请按照以下步骤操作:

  1. 使用 ACTION_VIEW 操作定义 Intent 并设置数据URI。
  2. 使用纬度和经度坐标或街道地址作为源 (saddr) 和目的地 (daddr) 位置。
  3. 调用 startActivity(intent) 启动 Google 地图。

使用坐标的示例:

Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse("http://maps.google.com/maps?saddr=20.344,34.34&daddr=20.5666,45.345"));
startActivity(intent);

要从当前位置开始导航,省略 Saddr 参数。

注意:使用街道地址而不是坐标将为用户提供在浏览器或 Google 地图中打开之间的选择。

直接启动 Google 地图导航:

Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse("google.navigation:q=an+address+city"));

Google 地图意图2023

2017 年 5 月,Google 推出了支持通用 Google 地图 URL 的新 API。您也可以通过意图利用此API:

Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse("https://www.google.com/maps/dir/?api=1&origin=source_location&destination=destination_location"));

注意:将source_location和destination_location替换为适当的值。

以上是如何使用 Intent 从 Android 应用程序启动 Google 地图路线?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn