RoadTypeSectionObject

Objective-C


@interface RoadTypeSectionObject : NSObject

Swift

class RoadTypeSectionObject : NSObject

This class encapsulates road type section information.

  • Distance in meters where the section starts.

    Declaration

    Objective-C

    @property (nonatomic) int startDistanceM;

    Swift

    var startDistanceM: Int32 { get set }
  • The type of road.

    Declaration

    Objective-C

    @property (nonatomic) RoadType type;

    Swift

    var type: RoadType { get set }