Loading...
Searching...
No Matches
NCRouteOptions.h
Go to the documentation of this file.
1#import "NCExport.h"
2#import <Foundation/Foundation.h>
3
26DEFAULT_EXPORT_ATTRIBUTE
27@interface NCRouteOptions : NSObject
28
32- (nonnull instancetype)initWithSmoothRadius:(nullable NSNumber *)smoothRadius
33 maxProjectionDistance:(nullable NSNumber *)maxProjectionDistance
34 maxAdvance:(nullable NSNumber *)maxAdvance;
35
39+ (nonnull instancetype)routeOptionsWithSmoothRadius:(nullable NSNumber *)smoothRadius
40 maxProjectionDistance:(nullable NSNumber *)maxProjectionDistance
41 maxAdvance:(nullable NSNumber *)maxAdvance;
42
50@property (nonatomic, readonly, nullable) NSNumber * smoothRadius;
51
59@property (nonatomic, readonly, nullable) NSNumber * maxProjectionDistance;
60
67@property (nonatomic, readonly, nullable) NSNumber * maxAdvance;
68
69@end