GeoBoundingBox

public struct GeoBoundingBox

Defines the rectangle area that contains the result of reverse geocoding.

Important

This is a Public Preview API. It may be changed or removed at any time.

Lifecycle

  • Creates bounding box with provided corner coordinates.

    Declaration

    Swift

    public init(southWestCorner: CLLocationCoordinate2D, northEastCorner: CLLocationCoordinate2D)

    Parameters

    southWestCorner

    a coordinate that represents south-west.

    northEastCorner

    a coordinate that represents north-east.

Public

  • A coordinate that represents south-west

    Declaration

    Swift

    @EquatableWrapper
    public private(set) var southWestCorner: CLLocationCoordinate2D { get set }
  • A coordinate that represents north-east

    Declaration

    Swift

    @EquatableWrapper
    public private(set) var northEastCorner: CLLocationCoordinate2D { get set }