RadarRouteDistance
@interface RadarRouteDistance : NSObject
Represents the distance of a route.
-
The distance in feet (for imperial units) or meters (for metric units).
Declaration
Objective-C
@property (readonly, assign, nonatomic) double value;
Swift
var value: Double { get }
-
A display string for the distance.
Declaration
Objective-C
@property (readonly, copy, nonatomic, nonnull) NSString *text;
Swift
var text: String { get }