I am using this URL
http://maps.google.com/maps?saddr=%f,%f&daddr=%f,%f
to show the direction page between two points. and I want to know what can I add to this URL to get the route between two points.
Currently it is showing direction page first and when I press route tab so it shows route page but what I want is it directly should go to route page.
I am using this code
String new_url = "http://maps.google.com/maps?saddr=" + ServerData.LATTITUDE + "," + ServerData.LONGITUDE + "&daddr=" + latitude + "," + longitude ;
Intent intent_map = new Intent(Intent.ACTION_VIEW, Uri.parse(new_url));
startActivity(intent_map);
Please Help