BoundingBox
public struct BoundingBox : Equatable, HashableThe smallest rectangular area within which all the coordinates lie.
- 
                  
                  Creates an instance of BoundingBox.DeclarationSwift public init(southWestCorner: CLLocationCoordinate2D, northEastCorner: CLLocationCoordinate2D)ParameterssouthWestCornerA coordinate representing the south-west (bottom left) corner of the bounding box. northEastCornerA coordinate representing the north-east (top right) corner of the bounding box. 
- 
                  
                  An alternative constructor to create a rect (rectangle) from north-west (top left) and south-east (bottom right) corners. DeclarationSwift public init(northWestCorner: CLLocationCoordinate2D, southEastCorner: CLLocationCoordinate2D)
- 
                  
                  An equatable south-west corner coordinate. DeclarationSwift @EquatableWrapper public private(set) var southWestCorner: CLLocationCoordinate2D { get set }
- 
                  
                  An equatable north-east corner coordinate DeclarationSwift @EquatableWrapper public private(set) var northEastCorner: CLLocationCoordinate2D { get set }
- 
                  
                  Custom implementation because CLLocationCoordinate2D should not conform to Hashable DeclarationSwift public func hash(into hasher: inout Hasher)
 
         TomTom SDK for iOS (0.53.1)
 
          TomTom SDK for iOS (0.53.1)
         BoundingBox
          BoundingBox