1

I am using google map to display route between two points . Now in my application i want to draw route in map using source point , destination point and via point.Please help me in this. Any help would be appreciated.

Thanks in Advance

Ullas
  • 383
  • 2
  • 6
  • 13

1 Answers1

0

Check this:

Answer : Draw path between two points using Google Maps Android API v2

But modify makeURL method to use

https://developers.google.com/maps/documentation/directions/#Waypoints

makeURL(double sourceLat, double sourceLng, double viaLat, double viaLng, double DestLat, double DestLng);
drawPath(result);
Community
  • 1
  • 1
Archie.bpgc
  • 23,812
  • 38
  • 150
  • 226
  • Use that link but with a waypoint instead of two calls. https://developers.google.com/maps/documentation/directions/#Waypoints – Rafe Mar 18 '13 at 06:28