removeTilesGroup

abstract fun removeTilesGroup(groupId: String, executor: Executor, callback: CompletionCallback<Unit>): AsyncOperationTask

Removes group of tiles.

Call to this function will be postponed until engine is ready (i.e. any of EngineReadyCallback callbacks called).

Return

an object representing pending completion of the task.

Parameters

groupId

Tile region group ID.

executor

Executor used for events dispatching. By default events are dispatched on the main thread.

callback

The callback to be invoked only once upon success or failure of the removal operation.

open fun removeTilesGroup(groupId: String, callback: CompletionCallback<Unit>): AsyncOperationTask

Removes group of tiles.

Call to this function will be postponed until engine is ready (i.e. any of EngineReadyCallback callbacks called).

Return

an object representing pending completion of the task.

Parameters

groupId

Tile region group ID.

callback

The callback to be invoked on the main thread only once upon success or failure of the removal operation.