I just displayed a path between to locations in Google Map using this code.
double srclat=8.8854;
double srclong=76.5833;
double destlat=9.0544;
double destlong=76.5353;
Intent i = new Intent(Intent.ACTION_VIEW,
Uri.parse("http://maps.google.com /maps?saddr="+srclat+","+srclong+"&daddr="+destlat+","+destlong));
startActivity(i);
Now I wan to know that can I draw path in Google Map like A to B then B to C then C to D. using this method or something like this
Thanks in advance