-
Notifications
You must be signed in to change notification settings - Fork 105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug] onMouseEnter on AdvancedMarker only works when onClick is set #542
Comments
@mrMetalWood can you have a look at that? This sounds like it could have something to do with the @antonio-pbilby can you check if it works for you when you manually add the react-google-maps/src/components/advanced-marker.tsx Lines 236 to 244 in 43b5c95
|
It worked with the default Pin, but not with my custom component. Does not work: <AdvancedMarker position={plot.location} key={plot.id}
onMouseEnter={() => setHighlightedPlot(plot.id)}
onMouseLeave={() => setHighlightedPlot(null)}
clickable
>
<div>dummy</div>
</AdvancedMarker> Works: <AdvancedMarker position={plot.location} key={plot.id}
onMouseEnter={() => setHighlightedPlot(plot.id)}
onMouseLeave={() => setHighlightedPlot(null)}
clickable
/> |
The We could add a |
Sounds good. Should also apply for the |
Description
Using the onMouseEnter with a AdvancedMarker is only working when the same AdvancedMarker has a onClick property set.
If I'm using the standar Pin, it works just fine.
Steps to Reproduce
Environment
Logs
No response
The text was updated successfully, but these errors were encountered: