OfflineManagerInterface

interface OfflineManagerInterface

An `offline manager` manages downloads and storage for style packages and also produces tileset descriptors for the `tile store`. All the asynchronous methods calls complete even if the `offline manager` instance gets out of scope before.

Functions

createTilesetDescriptor
Link copied to clipboard
abstract fun createTilesetDescriptor(@NonNull tilesetDescriptorOptions: TilesetDescriptorOptions): TilesetDescriptor
Construct a new `tileset descriptor` for the `tile store`.
abstract fun createTilesetDescriptor(@NonNull tilesetDescriptorOptionsForTilesets: TilesetDescriptorOptionsForTilesets): TilesetDescriptor
An overloaded version that accepts `TilesetDescriptorOptionsForTilesets`.
getAllStylePacks
Link copied to clipboard
abstract fun getAllStylePacks(@NonNull callback: StylePacksCallback)
Returns a list of the existing style packages.
getStylePack
Link copied to clipboard
abstract fun getStylePack(@NonNull styleURI: String, @NonNull callback: StylePackCallback)
Returns a style package by its id.
getStylePackMetadata
Link copied to clipboard
abstract fun getStylePackMetadata(@NonNull styleURI: String, @NonNull callback: StylePackMetadataCallback)
Returns a style package's associated metadata The style package's associated metadata that a user previously set.
loadStylePack
Link copied to clipboard
abstract fun loadStylePack(@NonNull styleURI: String, @NonNull loadOptions: StylePackLoadOptions, @NonNull onFinished: StylePackCallback): Cancelable
An overloaded version that does not report progess of the loading operation.
abstract fun loadStylePack(@NonNull styleURI: String, @NonNull loadOptions: StylePackLoadOptions, @NonNull onProgress: StylePackLoadProgressCallback, @NonNull onFinished: StylePackCallback): Cancelable
Loads a new style package or updates the existing one.
removeStylePack
Link copied to clipboard
abstract fun removeStylePack(@NonNull styleURI: String)
Removes a style package.

Inheritors

OfflineManager
Link copied to clipboard