RadarAddress

@interface RadarAddress : NSObject

Represents an address. For more information, see https://radar.io/documentation/api#geocode.

  • The location coordinate of the address.

    Declaration

    Objective-C

    @property (readonly, assign, nonatomic) CLLocationCoordinate2D coordinate;

    Swift

    var coordinate: CLLocationCoordinate2D { get }
  • The formatted string representation of the address.

    Declaration

    Objective-C

    @property (readonly, copy, nonatomic, nullable) NSString *formattedAddress;

    Swift

    var formattedAddress: String? { get }
  • The name of the country of the address.

    Declaration

    Objective-C

    @property (readonly, copy, nonatomic, nullable) NSString *country;

    Swift

    var country: String? { get }
  • The unique code of the country of the address.

    Declaration

    Objective-C

    @property (readonly, copy, nonatomic, nullable) NSString *countryCode;

    Swift

    var countryCode: String? { get }
  • The flag of the country of the address.

    Declaration

    Objective-C

    @property (readonly, copy, nonatomic, nullable) NSString *countryFlag;

    Swift

    var countryFlag: String? { get }
  • The name of the address.

    Declaration

    Objective-C

    @property (readonly, copy, nonatomic, nullable) NSString *state;

    Swift

    var state: String? { get }
  • The unique code of the state of the address.

    Declaration

    Objective-C

    @property (readonly, copy, nonatomic, nullable) NSString *stateCode;

    Swift

    var stateCode: String? { get }
  • The postal code of the address.

    Declaration

    Objective-C

    @property (readonly, copy, nonatomic, nullable) NSString *postalCode;

    Swift

    var postalCode: String? { get }
  • The city of the address.

    Declaration

    Objective-C

    @property (readonly, copy, nonatomic, nullable) NSString *city;

    Swift

    var city: String? { get }
  • The borough of the address.

    Declaration

    Objective-C

    @property (readonly, copy, nonatomic, nullable) NSString *borough;

    Swift

    var borough: String? { get }
  • The county of the address.

    Declaration

    Objective-C

    @property (readonly, copy, nonatomic, nullable) NSString *county;

    Swift

    var county: String? { get }
  • The neighborhood of the address.

    Declaration

    Objective-C

    @property (readonly, copy, nonatomic, nullable) NSString *neighborhood;

    Swift

    var neighborhood: String? { get }
  • The street number of the address.

    Declaration

    Objective-C

    @property (readonly, copy, nonatomic, nullable) NSString *number;

    Swift

    var number: String? { get }
  • The name of the address.

    Declaration

    Objective-C

    @property (readonly, copy, nonatomic, nullable) NSString *name;

    Swift

    var name: String? { get }
  • The confidence level of the geocoding result.

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic) enum RadarAddressConfidence confidence;

    Swift

    var confidence: RadarAddressConfidence { get set }