如何深入链接到谷歌地图应用程序中的位置共享页面

时间:2017-10-06 05:04:59

标签: android google-maps deep-linking google-maps-urls

在我的Android应用程序中,我需要打开Goog​​le地图的位置共享页面。我可以使用以下代码段

启动Google地图应用程序
Intent mapIntent = new Intent(Intent.ACTION_VIEW);
mapIntent.setPackage("com.google.android.apps.maps");
startActivity(mapIntent);

Intent mapIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("geo:latitude,longitude?z=zoom"));
startActivity(mapIntent);

如何启动“位置信息分享”页面(请参阅下图)Google地图?

enter image description here

1 个答案:

答案 0 :(得分:-1)

检查以下代码。这是谷歌的指南。

    Uri gmmIntentUri = Uri.parse("google.navigation:q=Taronga+Zoo,+Sydney+Australia");
Intent mapIntent = new Intent(Intent.ACTION_VIEW, gmmIntentUri);
mapIntent.setPackage("com.google.android.apps.maps");
startActivity(mapIntent);

查看以下链接以获取更多帮助: https://developers.google.com/maps/documentation/urls/android-intents