Class NCRoutePath - Navigine/Indoor-Navigation-iOS-Mobile-SDK-2.0 GitHub Wiki
NCRoutePath class is used for storing the route path between the two points on the location.
Referenced from: NCPosition, NCRouteListener.
@interface NCRoutePath : NSObject
@property (nonatomic, readonly) float length;
@property (nonatomic, nonnull, readonly) NSArray<NCRouteEvent *> * events;
@property (nonatomic, nonnull, readonly) NSArray<NCLocationPoint *> * points;
@end
Public fields
length
- route length (in meters)events
- sequence of route events on the route path (see class NCRouteEvent)points
- sequence of points composing the path (see class NCLocationPoint)