TTReverseGeocoderFullAddress

@interface TTReverseGeocoderFullAddress : NSObject

TTReverseGeocoderFullAddress

  • The structured address for the Result.

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly) TTAddress *_Nonnull address;

    Swift

    @NSCopying var address: TTAddress { get }
  • Information on the type of match.

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly) NSString *_Nonnull matchType;

    Swift

    var matchType: String { get }
  • The position of the Result.

    Declaration

    Objective-C

    @property (nonatomic, assign, unsafe_unretained, readonly)
        CLLocationCoordinate2D position;

    Swift

    var position: CLLocationCoordinate2D { get }
  • Array for reverseGeocodes at street level.

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly) NSArray<NSString *> *_Nonnull roadUse;

    Swift

    var roadUse: [String] { get }
  • A container for various data sources that can be used with the Additional

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly)
        TTAdditionalDataSources *_Nullable additionalDataSources;

    Swift

    @NSCopying var additionalDataSources: TTAdditionalDataSources? { get }