OfflineRegionManager(androidJvm)

The `offline region manager` that manages offline packs. All of the class’s instance methods are asynchronous reflecting the fact that offline resources are stored in a database. The offline manager maintains a canonical collection of offline packs.

Constructors

OfflineRegionManager
Link copied to clipboard

Construct a new offline manager.

open fun OfflineRegionManager(resourceOptions: ResourceOptions)

Functions

createOfflineRegion
Link copied to clipboard

Creates a new offline region based on a geometry

open fun createOfflineRegion(geometryDefinition: OfflineRegionGeometryDefinition, callback: OfflineRegionCreateCallback)

Creates a new offline region based on a tile pyramid

open fun createOfflineRegion(tilePyramidDefinition: OfflineRegionTilePyramidDefinition, callback: OfflineRegionCreateCallback)
getOfflineRegions
Link copied to clipboard

Invoke a call to fetch a list of offline regions.

open fun getOfflineRegions(callback: OfflineRegionCallback)
mergeOfflineDatabase
Link copied to clipboard

Merge offline regions from a secondary database into the main offline database.

open fun mergeOfflineDatabase(filePath: String, callback: OfflineDatabaseMergeCallback)
setOfflineMapboxTileCountLimit
Link copied to clipboard

Sets the maximum number of Mapbox-hosted tiles that may be downloaded and stored on the current device. By default, the limit is set to 6,000. Once this limit is reached, `OfflineRegionObserver.mapboxTileCountLimitExceeded()` fires every additional attempt to download additional tiles until already downloaded tiles are removed by calling `OfflineRegion.purge()` API.

open fun setOfflineMapboxTileCountLimit(limit: Long)