| 123456789101112131415161718192021222324252627282930313233 |
- // This file is generated and will be overwritten automatically.
- #import <Foundation/Foundation.h>
- #import <CoreLocation/CoreLocation.h>
- /**
- * The record represents the raw data which could be matched to the road graph.
- * Might be used to match:
- * - gantries, with exactly two coordinates
- * - lines, with two or more coordinates
- * - polygons, with three or more coordinates
- */
- NS_SWIFT_NAME(MatchableGeometry)
- __attribute__((visibility ("default")))
- @interface MBNNMatchableGeometry : NSObject
- // This class provides custom init which should be called
- - (nonnull instancetype)init NS_UNAVAILABLE;
- // This class provides custom init which should be called
- + (nonnull instancetype)new NS_UNAVAILABLE;
- - (nonnull instancetype)initWithId:(nonnull NSString *)id
- coordinates:(nonnull NSArray<CLLocation *> *)coordinates;
- /** id of the resulting object */
- @property (nonatomic, readonly, nonnull, copy) NSString *id;
- /** Coordinates to be matched */
- @property (nonatomic, readonly, nonnull, copy) NSArray<CLLocation *> *coordinates;
- @end
|