-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Description
If there is another marker on the map behind the cluster, then clicking on it works. I tried to make a function in @composable
@Composable
private fun Cluster(size: Int) {
/* Here we can customize the cluster style */
Box(
modifier = Modifier
.background(
Color(0x992196F3),
shape = CircleShape
)
.size(50.dp)
.clickable(
interactionSource = remember { MutableInteractionSource() },
indication = null,
onClick = {}
),
contentAlignment = Alignment.Center
) {
Text(text = size.toString(), color = Color.White)
}
}
In this case, clicking on the cluster does not work at all
I need to make pressing the cluster a priority
Metadata
Metadata
Assignees
Labels
No labels