I don't know if this will be implemented, but just in case, here is the code
used in android Gallery to display a point on a map :
// Can't use geo:latitude,longitude because it only centers
// the MapView to specified location, but we need a bubble
// for further operations (routing to/from).
// The q=(lat, lng) syntax is suggested by geo-team.
String uri = "http://maps.google.com/maps?f=q&" +
"q=(" + latlng[0] + "," + latlng[1] + ")";
activity.startActivity(new Intent(
android.content.Intent.ACTION_VIEW,
Uri.parse(uri)));
Original issue reported on code.google.com by pierre.g...@gmail.com on 27 Oct 2010 at 9:49
Original issue reported on code.google.com by
pierre.g...@gmail.com
on 27 Oct 2010 at 9:49