I need to show the driving direction using external google map application i found this link  http://developer.android.com/guide/appendix/g-app-intents.html ,but the below opens the Maps application to the given location
    Uri uri = Uri.parse("geo:13.070984,80.253639");
    Intent in = new Intent(Intent.ACTION_VIEW, uri);
    startActivity(in);
I need to know is there is any way to pass two geo location to get driving direction.
 
     
     
     
     
    