MapLibre Android Version
11.5.1
Android SDK Version
16
Device
Google Pixel 8
What happened?
Using the code below, I tried to set up clustering for my symbols so that the user would see a number for how many symbols are in the cluster. Is that not supported by SymbolManager?
val clusterOptions = ClusterOptions()
.withClusterMaxZoom(12)
.withClusterRadius(25)
.withTextSize(Expression.abs(50))
.withTextColor(Expression.color(Color.BLUE))
.withTextField(Expression.toNumber(Expression.get("point_count")))
MapLibre Android Version
11.5.1
Android SDK Version
16
Device
Google Pixel 8
What happened?
Using the code below, I tried to set up clustering for my symbols so that the user would see a number for how many symbols are in the cluster. Is that not supported by
SymbolManager?