TTReachableRangeResult

@interface TTReachableRangeResult : NSObject

TTReachableRangeResult

  • Location used as a center reachanble range for calculation.

    Declaration

    Objective-C

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

    Swift

    var centerLocation: CLLocationCoordinate2D { get }
  • Number of boundries in response.

    Declaration

    Objective-C

    @property (readonly, assign, nonatomic) NSUInteger boundriesCount;

    Swift

    var boundriesCount: UInt { get }
  • Returns CLLocationCoordinate2D boundry coordinate for given index.

    Declaration

    Objective-C

    - (CLLocationCoordinate2D)boundryAt:(NSUInteger)index;

    Swift

    func boundry(at index: UInt) -> CLLocationCoordinate2D

    Parameters

    index

    NSUInteger cant be higher than boundriesCount - 1

    Return Value

    CLLocationCoordinate2D