On the latest Compose BOM versions, the info window doesn't show when clicking on a MarkerInfoWindow.
The latest Compose BOM version where it still works is 2026.03.01
In all subsequent Compose BOM versions, the info window doesn't show up when clicking on the marker.
Environment details
Compose BOM version: 2026.06.01 (or anything after 2026.03.01)
com.google.maps.android:maps-compose version: 8.3.1 (or even earlier)
Steps to reproduce
Place a MarkerInfoWindow in the content of GoogleMap.
If use a Compose BOM version 2026.03.01 or earlier, when clicking on the marker, the window info shows up.
If use a Compose BOM version later than 2026.03.01, when clicking on the marker, the window info doesn't show up.
Code example
GoogleMap(
cameraPositionState = cameraPositionState,
onMapLoaded = onMapLoaded,
) {
MarkerInfoWindow(
state = singapore3State,
title = "MarkerInfoWindow",
icon = BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_BLUE),
) {
Column(modifier = Modifier.background(Color.White).padding(5.dp)) {
Text("Testing", color = Color.Blue, fontWeight = FontWeight.Bold)
Text(it.title!!, color = Color.Blue)
}
}
}
On the latest Compose BOM versions, the info window doesn't show when clicking on a
MarkerInfoWindow.The latest Compose BOM version where it still works is 2026.03.01
In all subsequent Compose BOM versions, the info window doesn't show up when clicking on the marker.
Environment details
Compose BOM version: 2026.06.01 (or anything after 2026.03.01)com.google.maps.android:maps-compose version: 8.3.1 (or even earlier)Steps to reproduce
Place a
MarkerInfoWindowin the content ofGoogleMap.If use a Compose BOM version 2026.03.01 or earlier, when clicking on the marker, the window info shows up.
If use a Compose BOM version later than 2026.03.01, when clicking on the marker, the window info doesn't show up.
Code example