MapLoadProgress

data class MapLoadProgress(val total: Int, val completed: Int = 0, val failed: Int = 0, val cancelled: Int = 0)

Load progress for map data sources, exposed on MapController.onLoadProgress. Top-level type so host apps (including AAR consumers) resolve total / completed reliably; internal queue state still uses Queue.Progress.

Constructors

Link copied to clipboard
constructor(total: Int, completed: Int = 0, failed: Int = 0, cancelled: Int = 0)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val cancelled: Int = 0
Link copied to clipboard
val completed: Int = 0
Link copied to clipboard
val failed: Int = 0
Link copied to clipboard
val total: Int