I want to get the Public Transit route between two locations on a Google Map on Android. The code that I am using is able to provide the driving directions in KML format. The code builds a URL by taking starting coordinates and destination coordinates as arguments.
public static String getUrl(double fromLat, double fromLon, double toLat,
double toLon) {// connect to map web service
StringBuffer urlString = new StringBuffer();
urlString.append("http://maps.google.com/maps?f=d&hl=en");
urlString.append("&saddr=");// from
urlString.append(Double.toString(fromLat));
urlString.append(",");
urlString.append(Double.toString(fromLon));
urlString.append("&daddr=");// to
urlString.append(Double.toString(toLat));
urlString.append(",");
urlString.append(Double.toString(toLon));
urlString.append("&ie=UTF8&0&om=0&output=kml"); //dirflg=r
return urlString.toString();
}
Can I tweak the URL arguments so that it displays the Public transit route instead of the driving route.?? If not, how do I display Public Transit routes..?