Loading...
Searching...
No Matches
NCRouteOptions.h
Go to the documentation of this file.
1#import "NCExport.h"
2#import <Foundation/Foundation.h>
3
16DEFAULT_EXPORT_ATTRIBUTE
17@interface NCRouteOptions : NSObject
18
22- (nonnull instancetype)initWithSmoothRadius:(nullable NSNumber *)smoothRadius
23 maxProjectionDistance:(nullable NSNumber *)maxProjectionDistance
24 maxAdvance:(nullable NSNumber *)maxAdvance;
25
29+ (nonnull instancetype)routeOptionsWithSmoothRadius:(nullable NSNumber *)smoothRadius
30 maxProjectionDistance:(nullable NSNumber *)maxProjectionDistance
31 maxAdvance:(nullable NSNumber *)maxAdvance;
32
40@property (nonatomic, readonly, nullable) NSNumber * smoothRadius;
41
49@property (nonatomic, readonly, nullable) NSNumber * maxProjectionDistance;
50
57@property (nonatomic, readonly, nullable) NSNumber * maxAdvance;
58
59@end