setClusters method

Future<void> setClusters(
  1. List<LatLng> points
)

Sets high-performance clustered markers.

Best used for large datasets (e.g., 100+ points).

Implementation

Future<void> setClusters(List<LatLng> points) async {
  await clusters.setPoints(points);
}