State
enum State : Equatable
-
Declaration
Swift
public enum NotPositioningReason : Equatable
-
Indicates that the system hasn’t yet recognized the environment and a VPS scan is required.
At this point, you should present the camera view to the user to allow them to scan using
vpsLocationSource.startScan()
.Declaration
Swift
case notPositioning(reason: NotPositioningReason)
-
Indicates that user location tracking is limited for various reasons.
A scan is recommended, but not mandatory, to restore the
accuratePositioning
state. We suggest a subtle UI indication when this state occurs, such as a location icon warning or a small toast message prompting the user to rescan.Declaration
Swift
case degradedPositioning(reason: DegradedPositioningReason)
-
Indicates that user location tracking is good and stable.
Shortly after the moment system reported this state, the VPS system will start updating the user’s location indicator on the map. Or if you use VPS with your custom map - you will start receiving updated
Coordinate
andAttitude
values inLocationSourceDelegate
.Declaration
Swift
case accuratePositioning
-
Declaration
Swift
public var isDegraded: Bool { get }
-
Declaration
Swift
public var isAccurate: Bool { get }