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

如何在 Android 中使用 Intent 启动 Google 地图路线?

Mary-Kate Olsen
Mary-Kate Olsen原创
2024-12-14 07:23:29430浏览

How to Launch Google Maps Directions Using Intents in Android?

使用 Android 版 Intent 启动 Google 地图路线

问题:

如何启动Google 在 Android 中使用 Intent 绘制两个位置之间的路线应用程序?

答案:

是的,可以使用 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);
  • 从当前位置:
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, 
Uri.parse("http://maps.google.com/maps?daddr=20.5666,45.345"));
startActivity(intent);
  • 直接导航(需要安装 Google 地图应用程序):
Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse("google.navigation:q=an+address+city"));

更新(五月2017):

Google 推出了用于通用、跨平台 Google 地图 URL 的新 API。您还可以将 Intents 与新 API 结合使用:

  • 解析 Google 地图 URL:
Uri gmmIntentUri = Uri.parse("https://www.google.com/maps/dir/?api=1&origin=Sydney&destination=Brisbane&travelmode=driving");
  • 创建意图:
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, gmmIntentUri);
startActivity(intent);

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

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