GLMapInfoState
Objective-C
enum GLMapInfoState : uint8_t {}
Swift
@frozen enum GLMapInfoState : UInt8, @unchecked Sendable
State of the vector map. GLMapInfo
tracks state of the vector map.
-
Map is deleted and there is no way to download it again because it was removed from map list.
Declaration
Objective-C
GLMapInfoState_Removed
Swift
case removed = 0
-
Map is not downloaded, but available to download.
Declaration
Objective-C
GLMapInfoState_NotDownloaded
Swift
case notDownloaded = 1
-
Map is downloaded successfully.
Declaration
Objective-C
GLMapInfoState_Downloaded
Swift
case downloaded = 2
-
New version of map is available to download.
Declaration
Objective-C
GLMapInfoState_NeedUpdate
Swift
case needUpdate = 3
-
User cancelled map downloading.
Declaration
Objective-C
GLMapInfoState_NeedResume
Swift
case needResume = 4
-
Map downloading is in progress.
Declaration
Objective-C
GLMapInfoState_InProgress
Swift
case inProgress = 5