| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- // This file is generated and will be overwritten automatically.
- #import <Foundation/Foundation.h>
- #import <MapboxNavigationNative/MBNNFunctionalRoadClass.h>
- #import <MapboxNavigationNative/MBNNRoadSurface.h>
- @class MBNNRoadName;
- NS_SWIFT_NAME(EdgeMetadata)
- __attribute__((visibility ("default")))
- @interface MBNNEdgeMetadata : 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)initWithHeading:(double)heading
- length:(double)length
- frc:(MBNNFunctionalRoadClass)frc
- speedLimit:(nullable NSNumber *)speedLimit
- speed:(double)speed
- ramp:(BOOL)ramp
- motorway:(BOOL)motorway
- bridge:(BOOL)bridge
- tunnel:(BOOL)tunnel
- toll:(BOOL)toll
- roundabout:(BOOL)roundabout
- names:(nonnull NSArray<MBNNRoadName *> *)names
- laneCount:(nullable NSNumber *)laneCount
- meanElevation:(nullable NSNumber *)meanElevation
- curvature:(uint8_t)curvature
- countryCodeIso3:(nullable NSString *)countryCodeIso3
- countryCodeIso2:(nullable NSString *)countryCodeIso2
- stateCode:(nullable NSString *)stateCode
- isRightHandTraffic:(BOOL)isRightHandTraffic
- isOneway:(BOOL)isOneway
- surface:(MBNNRoadSurface)surface
- isUrban:(BOOL)isUrban;
- /** The bearing in degrees clockwise at the start of the edge. 0 points to North. */
- @property (nonatomic, readonly) double heading;
- /** The Edge's length in meters. */
- @property (nonatomic, readonly) double length;
- /** The edge's functional road class */
- @property (nonatomic, readonly) MBNNFunctionalRoadClass frc;
- /**
- * The Edge's max speed (m/s)
- * - `nullopt` for unknown speed limit
- * - `0.0` for unlimited
- * - value in m/s otherwise
- * For detailed speed limit information use `getAdasAttributes`
- */
- @property (nonatomic, readonly, nullable) NSNumber *speedLimit;
- /** The Edge's average speed (m/s) */
- @property (nonatomic, readonly) double speed;
- /** Is the edge a ramp? */
- @property (nonatomic, readonly, getter=isRamp) BOOL ramp;
- /** Is the edge a motorway? */
- @property (nonatomic, readonly, getter=isMotorway) BOOL motorway;
- /** Is the edge a bridge? */
- @property (nonatomic, readonly, getter=isBridge) BOOL bridge;
- /** Is the edge a tunnel? */
- @property (nonatomic, readonly, getter=isTunnel) BOOL tunnel;
- /** Is the edge a toll road? */
- @property (nonatomic, readonly, getter=isToll) BOOL toll;
- /** Is the edge a roundabout road? */
- @property (nonatomic, readonly, getter=isRoundabout) BOOL roundabout;
- /** The edge's names */
- @property (nonatomic, readonly, nonnull, copy) NSArray<MBNNRoadName *> *names;
- /** The edge's lane counts */
- @property (nonatomic, readonly, nullable) NSNumber *laneCount;
- /** The edge's mean elevation */
- @property (nonatomic, readonly, nullable) NSNumber *meanElevation;
- /** The edge's curvature */
- @property (nonatomic, readonly) uint8_t curvature;
- /** The edge's country code (ISO-3 format) */
- @property (nonatomic, readonly, nullable, copy) NSString *countryCodeIso3;
- /** The edge's country code (ISO-2 format) */
- @property (nonatomic, readonly, nullable, copy) NSString *countryCodeIso2;
- /** The edge's state code */
- @property (nonatomic, readonly, nullable, copy) NSString *stateCode;
- /** True if in the current place/state uses right-hand traffic, false if left-hand. */
- @property (nonatomic, readonly, getter=isIsRightHandTraffic) BOOL isRightHandTraffic;
- /** True if current edge is oneway. */
- @property (nonatomic, readonly, getter=isIsOneway) BOOL isOneway;
- /** Edge's surface type. */
- @property (nonatomic, readonly) MBNNRoadSurface surface;
- /** True if edge is considered to be in urban area */
- @property (nonatomic, readonly, getter=isIsUrban) BOOL isUrban;
- @end
|