J2ME/Android/BlackBerry – driving directions, route between two locations
J2ME Map Route Provider maps.google.com has a navigation service which can provide you route information in KML format. To get kml file we need to form url with start and destination locations: 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”); … Read more