You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am missing contentDescription on the clustering pins.
It's an issue only for the clustering pins, as contentDescription works fine for the non-clustering pins.
Environment details
OS type and version:
Android 15 (Google Pixel 7 Pro emulator on Windows 10)
Library and version: com.google.maps.android:maps-compose:6.4.4 com.google.maps.android:maps-compose-utils:6.4.4
compose BOM 2024.10.01
Steps to reproduce
Add clustering pins through the Clustering function. I don't believe it really matters how you do this, but you can check our setup below
I expected to see the clustering pins with their correct content-desc tag value in the xml. content-desc="marker_generic_unselected_ChIJx0ZL3KwEdkgRbqnmC8H0RA8" content-desc="marker_generic_unselected_ChIJFZCSWqYEdkgRrIou3nanh70"
But they all have content-desc="Map Marker". They are in the xml dump, but outside of the the "Google Map" view element.
This causes our automated test on Appium to break, as they can't find the pins to "click on them".
Any idea on how to fix this issue? Unfortunately the "Map Marker" value seems to be hardcoded.
I would like to see something like this, in the xml dump
GoogleMap(
mergeDescendants = false // it's actually a default value, but it's important to mention this param
) {
val clusterManager = rememberClusterManager<ClusterPinResource>()
val renderer = rememberClusterRenderer(
clusterContent = { Cluster(it) },
clusterItemContent = { ClusterItem(it) },
clusterManager = clusterManager,
)
clusterManager?.renderer = renderer
Clustering(
items = pins.toClusterPins(),
clusterManager = clusterManager,
)
}
// We are creating renderer ourselfs so that we can use NonHierarchicalViewBasedAlgorithm algorithm for the cluster manager
Hi,
I am missing
contentDescription
on the clustering pins.It's an issue only for the clustering pins, as
contentDescription
works fine for the non-clustering pins.Environment details
Android 15 (Google Pixel 7 Pro emulator on Windows 10)
com.google.maps.android:maps-compose:6.4.4
com.google.maps.android:maps-compose-utils:6.4.4
compose BOM
2024.10.01
Steps to reproduce
contentDescription
on your clustering pinsadb shell uiautomator dump /sdcard/ui.xml
adb pull /sdcard/ui.xml "exported_test_tags.xml"
content-desc
values of the clustering pinsApp screenshot for the uiautomator dump
Slice of the uiautomator dump I got for the attached screenshot (trimmed some unnecessary tags & data)
The missing contentDescription part
I expected to see the clustering pins with their correct
content-desc
tag value in the xml.content-desc="marker_generic_unselected_ChIJx0ZL3KwEdkgRbqnmC8H0RA8"
content-desc="marker_generic_unselected_ChIJFZCSWqYEdkgRrIou3nanh70"
But they all have
content-desc="Map Marker"
. They are in the xml dump, but outside of the the "Google Map" view element.This causes our automated test on Appium to break, as they can't find the pins to "click on them".
Any idea on how to fix this issue? Unfortunately the "Map Marker" value seems to be hardcoded.
I would like to see something like this, in the xml dump
Code example
GoogleMaps Clustering setup
Clustering pins composable
Also tried this composable
The text was updated successfully, but these errors were encountered: