Using the example of the next page and it works perfect. http://csie-tw.blogspot.com/2009/06/android-driving-direction-route-path.html
But when I change the coordinates to my country (Chile), I can not make it show the route.
I think it must be a problem with this.
UrlString StringBuilder = new StringBuilder ();
urlString.append ("http://maps.google.com/maps?f=d&hl=en");
urlString.append ("& saddr =");/ / from
urlString.append (Double.ToString ((double) src.getLatitudeE6 () / 1.0E6));
urlString.append (",");
urlString.append (Double.ToString ((double) src.getLongitudeE6 () / 1.0E6));
urlString.append ("& daddr =");/ / to
urlString.append (Double.ToString ((double) dest.getLatitudeE6 () / 1.0E6));
urlString.append (",");
urlString.append (Double.ToString ((double) dest.getLongitudeE6 () / 1.0E6));
urlString.append ("& ie = UTF8 & 0 & om = 0 & output = kml");
Is that the problem?
Any solution?