I want to display street directions from my current location to particular known location(latitude and longitude), how to do it using google map?

link|improve this question

33% accept rate
feedback

2 Answers

up vote 0 down vote accepted

you can do that till android 1.6, they have removed the street directions after those versions.

Use the below code to get the activity in higher than android 1.6 versions. Hope this helps you.

final Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://maps.google.com/maps?" +"saddr="+sourcelatitudeString+","+sourcelongitudeString+"&daddr="+sourcelatString+","+sourcelongString)); intent.setClassName( "com.google.android.apps.maps", "com.google.android.maps.MapsActivity"); startActivity(intent);

link|improve this answer
what is saddr and daddr refer to? which one is current and which on is destination? please let me know – Vamshi Feb 15 at 10:21
@Vamshi saddr refers to source address and daddr refers to destination address. – Mukunda Feb 15 at 10:24
OK i will test it and if it is working i will accept your answer thanks – Vamshi Feb 15 at 10:26
It is working perfectly thanks.. – Vamshi Feb 15 at 10:55
vote it up then, thanks. – Mukunda Feb 15 at 11:05
show 2 more comments
feedback

You have to frame a URL and send via HTTP connection to get all driving directions in a single output file. Google provides some file formats to receive driving directions information. One of them is KML file.

See below link to get an idea.

Sample Google Map Driving Direction.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.