I can open google maps from my application and have a pointer over the location i am pointing to.
Instead i wanted to open google maps application from my application—- as is when user clicks on an address google maps application opens up with that particular point.
for that i used
startActivity(new Intent(android.content.Intent.ACTION_VIEW, Uri.parse("geo:lat,lng?q=lat,lng")));
Here lat=34.456373 and lng=-45.464748
Google maps application is opening but that particular location is not coming up instead my present location is coming up.How to rectify that?
http://developer.android.com/guide/appendix/g-app-intents.html refer for more detail..