Flutter: 3.38.5
Dart 3.10.4
Mapbox: 2.17.0
await _mapboxMap.style.addLayer(
CircleLayer(
id: 'clusters',
sourceId: 'markers',
circleColor: 0xFF266A4A,
filter: ['has', 'point_count'],
),
);
await _mapboxMap.style.setStyleLayerProperty('clusters', 'circle-color', [
'step',
['get', 'point_count'],
'#266A4A',
]);
await _mapboxMap.style.setStyleLayerProperty('clusters', 'circle-radius', [
'step',
['get', 'point_count'],
20,
100,
30,
750,
40,
]);```