RegionGraphNodeState

public struct RegionGraphNodeState : Equatable

The state of a node in the RegionGraph for which RegionGraphNode.isUpdatableRegion is true.

Important

This is a Public Preview API. It may be changed or removed at any time.
  • Install state of the map region.

    Declaration

    Swift

    public let installState: InstallState
  • The update state of the map region.

    Note

    The update state is nil if the region is inconsistent, or if no information about updates is available.

    Declaration

    Swift

    public let updateState: UpdateState?
  • The information about the available map region update.

    Note

    The information is nil if the region is up-to-date, collecting update information is in progress, or if no information about updates is available.

    Declaration

    Swift

    public let updateInfo: UpdateInfo?
  • The current operation for the region. It may be executing or waiting to be executed.

    Note

    A nil value means there is no operation being executed or waiting to be executed.

    Declaration

    Swift

    public let currentOperation: CurrentMapOperation?
  • The last completed map operation.

    Note

    A nil value means that no completed map operations are known.

    Declaration

    Swift

    public let lastCompletedOperation: CompletedMapOperation?