googlemaps / googlemaps/android-maps-compose
Please add the ability to edit MarkerInfoWindow & MarkerInfoWindowContent for clustered items
- Dominant language
- Kotlin
- Stars
- 1.3k
- Forks
- 181
- Avg merge
- 2d 23h
- Merged PRs (30d)
- 18
Description
I see no way to override the MarkerInfoWindow & MarkerInfoWindowContent for clustered items? This makes the new Clustering API useless for me.
Trying to use a MarkerInfoWindowContent as clusterItemContent results in an exception when the map is loaded. java.lang.IllegalStateException: Invalid applier
`clusterItemContent = {
MarkerInfoWindowContent(
state = rememberMarkerState(position = it.position),
onClick = {
Log.d(TAG, "Non-cluster marker clicked! $it")
true
}
) {
Column {
Text(text = "dasf")
Text(text = "tjtuehsfgh")
}
}
}`
Contributor guide
Assessment
This issue has not been assessed yet.