我在Android应用程序中工作,我有两个Geo点。我希望用户从我的应用程序重定向到谷歌地图android应用程序,以显示地图中的方向。如何将两个地理位置传递到谷歌地图android应用程序以显示谷歌地图应用程序中的方向。
答案 0 :(得分:6)
Here's an example showing directions in the Google Maps app使用意图。
来自链接的答案:
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);