RadarRoutes

@interface RadarRoutes : NSObject

Represents routes from an origin to a destination. For more information, see https://radar.io/documentation/api#route.

  • The geodesic distance between the origin and destination.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly, nullable) RadarRouteDistance *geodesic;

    Swift

    var geodesic: RadarRouteDistance? { get }
  • The route by foot between the origin and destination. May be nil if mode not specified or route unavailable.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly, nullable) RadarRoute *foot;

    Swift

    var foot: RadarRoute? { get }
  • The route by bike between the origin and destination. May be nil if mode not specified or route unavailable.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly, nullable) RadarRoute *bike;

    Swift

    var bike: RadarRoute? { get }
  • car

    The route by car between the origin and destination. May be nil if mode not specified or route unavailable.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly, nullable) RadarRoute *car;

    Swift

    var car: RadarRoute? { get }