export function drawClusterLayer()

in src/drawClusterLayer.ts [15:34]


export function drawClusterLayer(
  sourceName: string,
  map: maplibreMap,
  {
    fillColor: markerColor = MARKER_COLOR,
    smCircleSize: smallSize = 60,
    smThreshold: smallThreshold = 50,
    mdCircleSize: mediumSize = 100,
    mdThreshold: mediumThreshold = 100,
    lgCircleSize: largeSize = 140,
    lgThreshold: largeThreshold = 500,
    xlCircleSize: extraLargeSize = 180,
    borderWidth = 4,
    borderColor = COLOR_WHITE,
    clusterPaint,
    onClick,
    showCount,
    clusterCountLayout,
    fontColor = COLOR_WHITE,
  }: ClusterOptions,