i am using following code to point the marker on the map. please guide how can i draw the direction line from my current location to this point from the code . Like line pointing from source destination
String loc ="";
String city ="s";
String address = loc + city
+ ";
String cleanAddress = address.replace(",", "");
cleanAddress = cleanAddress.replace(' ', '+');
try {
Intent geoIntent = new Intent("android.intent.action.VIEW", android.net.Uri.parse("geo:0,0?q="
+ cleanAddress));
startActivity(geoIntent);
}