getGeoJsonClusterLeaves method

Future<FeatureExtensionValue> getGeoJsonClusterLeaves(
  1. String sourceIdentifier,
  2. Map<String?, Object?> cluster,
  3. int? limit,
  4. int? offset,
)

Returns all the leaves (original points) of a cluster (given its cluster_id) from a GeoJsonSource, with pagination support: limit is the number of leaves to return (set to Infinity for all points), and offset is the amount of points to skip (for pagination).

Requires configuring the source as a cluster by calling GeoJsonSource.Builder#cluster(boolean).

Implementation

Future<FeatureExtensionValue> getGeoJsonClusterLeaves(String sourceIdentifier,
        Map<String?, Object?> cluster, int? limit, int? offset) =>
    _mapInterface.getGeoJsonClusterLeaves(
        sourceIdentifier, cluster, limit, offset);