getFeatures

abstract fun getFeatures(layerList: LayerList, completionCallback: CompletionCallback<List<Feature>>)

Retrieves a list of features from the given layer list asynchronously.

Parameters

layerList

The layer list from which to retrieve the features.

completionCallback

The callback function to be invoked with the list of features.


abstract suspend fun getFeatures(layerList: LayerList): List<Feature>

Retrieves a list of features from the given layer list asynchronously.

Return

The list of features.

Parameters

layerList

The layer list from which to retrieve the features.