RadarRoutes
Objective-C
@interface RadarRoutes : NSObject
Swift
class RadarRoutes : NSObject
Represents routes from an origin to a destination.
-
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 }
-
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 }
-
The route by truck between the origin and destination. May be
nil
if mode not specified or route unavailable.Declaration
Objective-C
@property (nonatomic, strong, readonly, nullable) RadarRoute *truck;
Swift
var truck: RadarRoute? { get }
-
The route by motorbike between the origin and destination. May be
nil
if mode not specified or route unavailable.Declaration
Objective-C
@property (nonatomic, strong, readonly, nullable) RadarRoute *motorbike;
Swift
var motorbike: RadarRoute? { get }