I want to display some markers using the geo: intent to display a map at a specified location and zoom level. But I don't know how to add my markers here? Can somebody help me with this?
// Creates an Intent that will load a map of San Francisco
Uri gmmIntentUri = Uri.parse("geo:37.7749,-122.4194");
Intent mapIntent = new Intent(Intent.ACTION_VIEW, gmmIntentUri);
mapIntent.setPackage("com.google.android.apps.maps");
startActivity(mapIntent);
Thanks in advice for some help.