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 isnil
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 isnil
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
Anil
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
Anil
value means that no completed map operations are known.Declaration
Swift
public let lastCompletedOperation: CompletedMapOperation?