使用 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);
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse("google.navigation:q=an+address+city"));
更新(五月2017):
Google 推出了用于通用、跨平台 Google 地图 URL 的新 API。您还可以将 Intents 与新 API 结合使用:
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中文网其他相关文章!