将用户重定向到Google Maps Android应用程序以显示方向
作者:互联网
我在Android应用程序中工作,我有两个Geo点.我希望用户从我的应用程序重定向到谷歌地图android应用程序,以显示地图中的方向.如何将两个地理位置传递到谷歌地图android应用程序以显示谷歌地图应用程序中的方向.
解决方法:
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);
标签:android-maps,android-maps-v2,android,google-maps 来源: https://codeday.me/bug/20190824/1713559.html