Assigned
Status Update
Comments
la...@google.com <la...@google.com> #2
We are building a polygon array with a click event: https://developers.google.com/maps/documentation/javascript/examples/polygon-arrays
However, looking for keyboard accessibility, we are not able to trigger the information dialog using a keyboard similar to how to map markers can be triggered using arrow keys:https://developers.google.com/maps/documentation/javascript/examples/marker-accessibility
Is there something we can do about it?
Thank you!
Map version: 3.49.12
However, looking for keyboard accessibility, we are not able to trigger the information dialog using a keyboard similar to how to map markers can be triggered using arrow keys:
Is there something we can do about it?
Thank you!
Map version: 3.49.12
ju...@gmail.com <ju...@gmail.com> #3
Thanks for your suggestion!
We'll be reviewing this for further consideration. Please star this issue to get updates and leave comments for additional information. Please note that starring the issue also provides our product team with valuable feedback on the importance of the issue to our customers.
la...@google.com <la...@google.com> #4
✨
ju...@gmail.com <ju...@gmail.com> #5
I have attached a screenshot of the message 'Use X + scroll to zoom the map' and the contrast ratio information for the scroll, where you can see that the contrast value is insufficient.
la...@google.com <la...@google.com> #6
Thank you for waiting.
We have verified and logged this issue internally. Please note that we cannot give you any timelines, but you can star the issue to get notifications.
la...@google.com <la...@google.com> #7
Good day,
It seems that values were swapped for your issue. The background opacity
for the zoom text has a passing ratio using this tool:
ju...@gmail.com <ju...@gmail.com> #8
Hello!
The catch is that since the background has opacity, the contrast may depend on the background behind the backdrop, when it's white it didn't pass the tests.
I'm attaching a case where it would fail on regular text.
The catch is that since the background has opacity, the contrast may depend on the background behind the backdrop, when it's white it didn't pass the tests.
I'm attaching a case where it would fail on regular text.
la...@google.com <la...@google.com> #9
Thank you for confirming. We will be following up on this case.
Description
Version: 3.58.11a
Current CSS:
.gm-style-moc {
background-color: rgba(0, 0, 0, 0.45);
}
Issue: The current background opacity does not meet the accessibility contrast requirements as specified in WCAG.
Proposed Fix: To comply with the accessibility contrast specifications, the background color should be updated to:
background-color: rgba(0, 0, 0, 0.55);
This change will ensure that the text has sufficient contrast against the background, improving readability for users with visual impairments.