我正在构建具有Google Maps
的应用程序,并在Google地图上绘制了Rectangle
。 Google Maps在Left Navigation Drawer
中可以选择保存名为Offline Maps
的离线地图
User
单击Offline maps
时,他具有下载矩形区域的特权,如下所示:
我想通过Intent
从应用程序中打开此区域。是否可以选择启动MapsActivity
并提供Bounds
或Lat/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);
}