TileStoreObserver

interface TileStoreObserver

Observer for getting notified about changes to TileRegions.

Functions

onRegionGeometryChanged
Link copied to clipboard
abstract fun onRegionGeometryChanged(@NonNull id: String, @NonNull geometry: Geometry)
Called when the geometry of a TileRegion was modified.
onRegionLoadFinished
Link copied to clipboard
abstract fun onRegionLoadFinished(@NonNull id: String, @NonNull region: Expected<TileRegionError, TileRegion>)
Called once a TileRegion load completes successfully, or is aborted due to cancellation or errors.
onRegionLoadProgress
Link copied to clipboard
abstract fun onRegionLoadProgress(@NonNull id: String, @NonNull progress: TileRegionLoadProgress)
Called whenever the load progress of a TileRegion changes.
onRegionMetadataChanged
Link copied to clipboard
abstract fun onRegionMetadataChanged(@NonNull id: String, @NonNull value: Value)
Called when the user-provided metadata associated with a TileRegion was changed.
onRegionRemoved
Link copied to clipboard
abstract fun onRegionRemoved(@NonNull id: String)
Called when a TileRegion was removed.