RadarAddress
Objective-C
@interface RadarAddress : NSObject
Swift
class RadarAddress : NSObject
Represents an address.
-
The location coordinate of the address.
Declaration
Objective-C
@property (nonatomic, readonly) CLLocationCoordinate2D coordinate;
Swift
var coordinate: CLLocationCoordinate2D { get }
-
The formatted string representation of the address.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *formattedAddress;
Swift
var formattedAddress: String? { get }
-
The name of the country of the address.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *country;
Swift
var country: String? { get }
-
The unique code of the country of the address.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *countryCode;
Swift
var countryCode: String? { get }
-
The flag of the country of the address.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *countryFlag;
Swift
var countryFlag: String? { get }
-
The name of the DMA of the address.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *dma;
Swift
var dma: String? { get }
-
The unique code of the DMA of the address.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *dmaCode;
Swift
var dmaCode: String? { get }
-
The name of the state of the address.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *state;
Swift
var state: String? { get }
-
The unique code of the state of the address.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *stateCode;
Swift
var stateCode: String? { get }
-
The postal code of the address.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *postalCode;
Swift
var postalCode: String? { get }
-
The city of the address.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *city;
Swift
var city: String? { get }
-
The borough of the address.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *borough;
Swift
var borough: String? { get }
-
The county of the address.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *county;
Swift
var county: String? { get }
-
The neighborhood of the address.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *neighborhood;
Swift
var neighborhood: String? { get }
-
The street number of the address.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *number;
Swift
var number: String? { get }
-
The label of the address.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *addressLabel;
Swift
var addressLabel: String? { get }
-
The label of the place.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *placeLabel;
Swift
var placeLabel: String? { get }
-
The confidence level of the geocoding result.
Declaration
Objective-C
@property (nonatomic) enum RadarAddressConfidence confidence;
Swift
var confidence: RadarAddressConfidence { get set }