-
Notifications
You must be signed in to change notification settings - Fork 57
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
Info Windows dissapear when the map is panned. #28
Comments
Your correct, I created a fix from outside the library, this gets triggered after onClusteringFishished(). You will need to change slightly to fit your MarkerModel system. new Thread(new Runnable() {
Obviously this isn't optimal however it works, make sure to do most of the looping on a background thread to avoid UI pauses. |
Seems rather heavy. I might try and figure out an easy way from inside the library to make this work, at some point. So far I have not been successful. |
It seems that a cluster transition is started whenever the map is panned, regardless of whether clusters need to be transitioned, leading to a call to clusterkaf.removePreviousMarkers() which removes the markers. This means that if someone clicks on a marker to show its info-window, and then tries to pan the map to see more of the info-window, the info-window will dissapear.
I've been looking at trying to fix this issue. I'm not sure it's an easy one. So I'm reporting it.
The text was updated successfully, but these errors were encountered: