BoundingBox

public struct BoundingBox : Codable, Hashable

Bounding box is an area defined by two longitudes and two latitudes, where: Latitude is a decimal number between -90.0 and 90.0. Longitude is a decimal number between -180.0 and 180.0.

  • Undocumented

    Declaration

    Swift

    public var southWest: CLLocationCoordinate2D { get set }
  • Undocumented

    Declaration

    Swift

    public var northEast: CLLocationCoordinate2D { get set }
  • Undocumented

    Declaration

    Swift

    public init?(from coordinates: [CLLocationCoordinate2D]?)
  • Undocumented

    Declaration

    Swift

    public init(_ southWest: CLLocationCoordinate2D, _ northEast: CLLocationCoordinate2D)
  • Undocumented

    Declaration

    Swift

    public func contains(_ coordinate: CLLocationCoordinate2D, ignoreBoundary: Bool = true) -> Bool