TTAddressRanges

Objective-C

@interface TTAddressRanges : NSObject

Swift

class TTAddressRanges : NSObject

A representation of address ranges on a street segment. Available only for results where result type is equal to “Address Range”.

  • An address range on the left side of a street segment.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) NSString *_Nonnull rangeLeft;

    Swift

    var rangeLeft: String { get }
  • An address range on the right side of a street segment.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) NSString *_Nonnull rangeRight;

    Swift

    var rangeRight: String { get }
  • A beginning point of a street segment.

    Declaration

    Objective-C

    @property (nonatomic, readonly) CLLocationCoordinate2D from;

    Swift

    var from: CLLocationCoordinate2D { get }
  • to

    An end point of a street segment.

    Declaration

    Objective-C

    @property (nonatomic, readonly) CLLocationCoordinate2D to;

    Swift

    var to: CLLocationCoordinate2D { get }