TileStoreObserver(androidJvm)

Observer for getting notified about changes to TileRegions.

interface TileStoreObserver(androidJvm)

Functions

onRegionGeometryChanged
Link copied to clipboard

Called when the geometry of a TileRegion was modified.

abstract fun onRegionGeometryChanged(id: String, geometry: Geometry)
onRegionLoadFinished
Link copied to clipboard

Called once a TileRegion load completes successfully, or is aborted due to cancellation or errors.

abstract fun onRegionLoadFinished(id: String, region: Expected<TileRegionError, TileRegion>)
onRegionLoadProgress
Link copied to clipboard

Called whenever the load progress of a TileRegion changes.

abstract fun onRegionLoadProgress(id: String, progress: TileRegionLoadProgress)
onRegionMetadataChanged
Link copied to clipboard

Called when the user-provided metadata associated with a TileRegion was changed.

abstract fun onRegionMetadataChanged(id: String, value: Value)
onRegionRemoved
Link copied to clipboard

Called when a TileRegion was removed.

abstract fun onRegionRemoved(id: String)

Inheritors

TileStoreObserverNative
Link copied to clipboard