I had calculated a route in here maps and started Turn-by-Turn Navigation using that route. Everything is working fine in offline and when i tried to calculate the distance to reach the destination using
double distance = [NMANavigationManager sharedNavigationManager].distanceToDestination;
The above method returned value which is very high such as 184467440737095520000. The returned value is always 184467440737095520000 even for different routes. when i referred the navigation manager delegate i found that this method will return values in metres. But even this returned value is too high of my destination's distance..Please guide me how to calculate the distance to my destination correctly.. thanks in advance
-(void)CalculateRoute:(NMARoutingMode *)routingMode
{
routeManager = [NMARouteManager sharedRouteManager];
routeManager.delegate = self;
NSMutableArray* stopList = [NSMutableArray array];
[stopList addObject:_StartCoordinate];
[stopList addObject:_DestinationCoordinate];
NSLog(@"routing from [%.5f,%.5f] to [%.5f,%.5f]", ((NMAGeoCoordinates*)stopList[0]).latitude, ((NMAGeoCoordinates*)stopList[0]).longitude,
((NMAGeoCoordinates*)stopList[1]).latitude, ((NMAGeoCoordinates*)stopList[1]).longitude);
NSLog(@"routingMode===>%@",routingMode.description);
[routeManager calculateRouteWithStops:stopList routingMode:routingMode];
}
-(IBAction)StartNav:(UIButton*)sender
{
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(positionDidUpdate)
name:NMAPositioningManagerDidUpdatePositionNotification
object:[NMAPositioningManager sharedPositioningManager]];
[NMANavigationManager sharedNavigationManager].map = self.mapView;
[NMANavigationManager sharedNavigationManager].delegate = self;
[NMANavigationManager sharedNavigationManager].mapTrackingAutoZoomEnabled = YES;
[NMANavigationManager sharedNavigationManager].mapTrackingEnabled = YES;
[NMANavigationManager sharedNavigationManager].mapTrackingOrientation = NMAMapTrackingOrientationDynamic;
[NMANavigationManager sharedNavigationManager].speedWarningEnabled = YES;
[NMANavigationManager sharedNavigationManager].mapTrackingTilt = NMAMapTrackingTilt2D;
[[NMANavigationManager sharedNavigationManager]startTurnByTurnNavigationWithRoute:_route];
}
distanceToDestination
is not adouble
value. It is anunsigned long long
value orNMAUint64
value.Do following:
or