I\'m trying to show route between two places, I want to used Google Places API V3 for route steps between two points.
Before I was using Old Google Maps API, a
The solution above posted by https://stackoverflow.com/users/975959/la-bla-bla works very well with Google Maps API V2 but it needs some minor modifications:
Replace all the occurrences of GeoPoint with LatLng.
Replace the line:
GeoPoint p = new GeoPoint((int) (((double) lat / 1E5) * 1E6), (int) (((double) lng / 1E5) * 1E6));
Which is located just before the end of the method decodePoly, with this line:
LatLng p = new LatLng(lat / 1E5, lng / 1E5);
Hope this works for Google Maps API v2 users.