将 Google 地图路线集成到 Android 应用程序中
许多移动应用程序需要集成 Google 地图才能为用户提供详细的路线。然而,在应用程序中嵌入 Google 地图可能会很费力。幸运的是,Android 提供了一种方便的替代方案:使用 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);
此代码将在导航中打开 Google 地图模式,允许用户获取从 A 点(用坐标 20.344,34.34 表示)到 B 点(用坐标表示)的方向20.5666,45.345).
或者,要从用户当前位置启动导航,可以删除 Saddr 参数。也可以使用实际的街道地址而不是坐标,但可能会提示用户选择要打开的应用程序的对话框。
要通过 Google 地图直接导航,建议使用以下代码:
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse("google.navigation:q=an+address+city"));
此外,Google 于 2017 年为 Google Maps URL 引入了通用的跨平台 API。该 API 还允许使用 Intents 进行直接导航,从而提供了更高效和标准化的方式将 Google 地图方向集成到 Android 应用程序中的方法。
以上是如何使用 Intent 将 Google 地图路线集成到我的 Android 应用程序中?的详细内容。更多信息请关注PHP中文网其他相关文章!