启动Google Maps Activity以通过Intent下载离线地图

时间:2019-10-23 06:15:11

标签: android google-maps-android-api-2 android-maps-v2

我正在构建具有Google Maps的应用程序,并在Google地图上绘制了Rectangle。 Google Maps在Left Navigation Drawer中可以选择保存名为Offline Maps的离线地图

enter image description here

User单击Offline maps时,他具有下载矩形区域的特权,如下所示:

enter image description here

我想通过Intent从应用程序中打开此区域。是否可以选择启动MapsActivity并提供BoundsLat/longs的意图?

我想要类似以下内容的地图,其中显示了经纬度的地图

Uri gmmIntentUri = Uri.parse("geo:37.7749,-122.4194");
Intent mapIntent = new Intent(Intent.ACTION_VIEW, gmmIntentUri);
mapIntent.setPackage("com.google.android.apps.maps");
if (mapIntent.resolveActivity(getPackageManager()) != null) {
    startActivity(mapIntent);
}

0 个答案:

没有答案