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