I have an application in which I want to show different locations (one at a time, selected using user input) by launching Google Maps with their specific geographical coordinates.
I am currently using this (with real lat. And long. Of course values):
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("geo:<lat>,<long>?z=17")); startActivity(intent);
This is exactly what I want, except that it does not show any indicator or marker for the specified point. These are only centers in this place.
Is there a way to add a marker or something else without using MapView?
android android-intent google-maps android-maps
Specur Oct 21 '10 at 17:15 2010-10-21 17:15
source share