TTBoundingBox

Objective-C

@interface TTBoundingBox : NSObject

Swift

class TTBoundingBox : NSObject

A representation of the bounding box rectangle.

  • Top-left corner of the bounding box.

    Declaration

    Objective-C

    @property (nonatomic, readonly) CLLocationCoordinate2D topLeft;

    Swift

    var topLeft: CLLocationCoordinate2D { get }
  • Bottom-right corner of the bounding box.

    Declaration

    Objective-C

    @property (nonatomic, readonly) CLLocationCoordinate2D bottomRight;

    Swift

    var bottomRight: CLLocationCoordinate2D { get }