Maps intent.... using a pin?

UNEXPECTED62

Member
Joined
Dec 28, 2009
Messages
34
Reaction score
0
[FONT=Courier, Monospaced]I'm launching google maps via an intent. If I supply a latitude and longitude, no pin will be displayed on the map. Is there a way to explicitly tell google maps to add a pin, and what text to put on it?
[/FONT][FONT=Courier, Monospaced]
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("geo:" + lat +"," + lon));
startActivity(intent);

Currently, this just zooms into a low level of the coordinates, with no pin on what I actually marked.
[/FONT]
 
Top