From my Android application, I need to open the location sharing page of Google Maps. I can launch the google maps application using following code snippet,
Intent mapIntent = new Intent(Intent.ACTION_VIEW);
mapIntent.setPackage("com.google.android.apps.maps");
startActivity(mapIntent);
or
Intent mapIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("geo:latitude,longitude?z=zoom"));
startActivity(mapIntent);
What should I do to launch the "Location Sharing" page(refer the image below) Google maps?