TTAddressRanges

@interface 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 (readonly, strong, nonatomic) NSString *_Nonnull rangeLeft;

    Swift

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

    Declaration

    Objective-C

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

    Swift

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

    Declaration

    Objective-C

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

    Swift

    var from: CLLocationCoordinate2D { get }
  • to

    An end point of a street segment.

    Declaration

    Objective-C

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

    Swift

    var to: CLLocationCoordinate2D { get }