I am building a windows phone 8 using BingMapsDirectionsTask
BingMapsDirectionsTask task = new BingMapsDirectionsTask();
ShowMyLocationOnTheMap();
LabeledMapLocation start = new LabeledMapLocation(myCrntAddres, new System.Device.Location.GeoCoordinate());
LabeledMapLocation end = new LabeledMapLocation(desLoc.Text, new System.Device.Location.GeoCoordinate());
task.Start = start;
task.End = end;
The code is working fine, but I want to add functionality so that a user can drag route on map which is already mapped between user current location and user inputed address.