使用 Android Intents 启动 Google 地图路线
需要在 Android 应用程序中显示从一个位置到另一个位置的 Google 地图路线,而不合并整个位置地图框架?使用意图使其可以实现。
如何使用意图启动 Google 地图路线:
要使用意图启动 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中文网其他相关文章!