alejandro something like this
var Info = new NSDictionary();
var OrigenDestino = new MKDirectionsRequest()
{
Source = new MKMapItem(new MKPlacemark(Starting point, Info)),
Destination = new MKMapItem(new MKPlacemark(Ending pont, Info)),
TransportType= MKDirectionsTransportType.Walking,// This is the line that you need
};
Answers
alejandro something like this
var Info = new NSDictionary();
var OrigenDestino = new MKDirectionsRequest()
{
Source = new MKMapItem(new MKPlacemark(Starting point, Info)),
Destination = new MKMapItem(new MKPlacemark(Ending pont, Info)),
TransportType= MKDirectionsTransportType.Walking,// This is the line that you need
};
did you solve your problem yet?