mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-21 13:53:37 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
19 lines
377 B
Objective-C
19 lines
377 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
NS_SWIFT_NAME(RoutingOptions)
|
|
@interface MWMRoutingOptions : NSObject
|
|
|
|
@property(nonatomic) BOOL avoidToll;
|
|
@property(nonatomic) BOOL avoidDirty;
|
|
@property(nonatomic) BOOL avoidFerry;
|
|
@property(nonatomic) BOOL avoidMotorway;
|
|
@property(nonatomic, readonly) BOOL hasOptions;
|
|
|
|
- (void)save;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|