VisibleRegion

public struct VisibleRegion

Defines map visible region as CLLocationCoordinate2D coordinates.

Important

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

Lifecycle

  • VisibleRegion init method.

    Declaration

    Swift

    public init(
        farLeft: CLLocationCoordinate2D,
        nearLeft: CLLocationCoordinate2D,
        farRight: CLLocationCoordinate2D,
        nearRight: CLLocationCoordinate2D
    )

    Parameters

    farLeft

    The far-left coordinate.

    nearLeft

    The near-left coordinate.

    farRight

    The far-right coordinate.

    nearRight

    The near-right coordinate.

Public

  • The far left coordinate.

    Declaration

    Swift

    public let farLeft: CLLocationCoordinate2D
  • The near left coordinate.

    Declaration

    Swift

    public let nearLeft: CLLocationCoordinate2D
  • The far right coordinate.

    Declaration

    Swift

    public let farRight: CLLocationCoordinate2D
  • The near right coordinate.

    Declaration

    Swift

    public let nearRight: CLLocationCoordinate2D