As mentioned in Google Maps API for Android SDK, it is possible to open Google Maps Intent with a specific location
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);
}
Can this be done to open Google Maps and directly open profile section and the offline maps download section? Which parameters do I have to use?