BoundingBox
public struct BoundingBox
extension BoundingBox: Equatable
A model represeting a bounding box that represents a geographic area.
-
The latitude for the top left corner of the bounding box
Declaration
Swift
public let topLeftCoordinate: Coordinate -
The longitude for the bottom right corner of the bounding box
Declaration
Swift
public let bottomRightCoordinate: Coordinate -
Initializes a
BoundingBox- topLeftCoordinate: A
Coordinatethat represents the top left corner of the bounding box - bottomRightCoordinate: A
Coordinatethat represents the bottom right coordinate of the bounding box
Declaration
Swift
public init(topLeftCoordinate: Coordinate, bottomRightCoordinate: Coordinate) - topLeftCoordinate: A
-
Declaration
Swift
public static func == (lhs: BoundingBox, rhs: BoundingBox) -> Bool
BoundingBox Structure Reference