Hii all,
First, I'm working on create maps navigation App using Apple Maps. This maps will show line for specific route. The problem is that possible to show Turn By Turn direction flags just for "Turn Left" or "Turn Right" etc so i can show the image for the direction. Because based on my code bellow, in the response i just found "Instruction" field that contain full instruction sentence like "Turn right onto ABC Street". So i cannot get only direction for showing the image.
If i see on google maps direction API, the results have field name "Maneuver" thats contains only "Trun-left" sentences. So where i can find that in Apple Maps API ?
I Already using MKDirections for getting route information.
var request = new MKDirectionsRequest
{
Source = sourceItem,
Destination = destItem,
RequestsAlternateRoutes = false,
TransportType=
MKDirectionsTransportType.Automobile };
try {
var directions = new MKDirections(request);
var response = await directions.CalculateDirectionsAsync();
if (response != null) {
// i get the results API in response
}
}