What's new
DroidForums.net | Android Forum & News

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Maps intent.... using a pin?

[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]
 
Back
Top