RadarRoute
Objective-C
@interface RadarRoute : NSObject
Swift
class RadarRoute : NSObject
Represents a route between an origin and a destination.
-
The distance of the route.
Declaration
Objective-C
@property (nonatomic, strong, readonly, nonnull) RadarRouteDistance *distance;
Swift
var distance: RadarRouteDistance { get }
-
The duration of the route.
Declaration
Objective-C
@property (nonatomic, strong, readonly, nonnull) RadarRouteDuration *duration;
Swift
var duration: RadarRouteDuration { get }
-
The geometry of the route.
Declaration
Objective-C
@property (nonatomic, strong, readonly, nonnull) RadarRouteGeometry *geometry;
Swift
var geometry: RadarRouteGeometry { get }