We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When using the marker_cluster example, I cannot hide all the underlying markers at once as with other layers by setting a visible trait to False:
visible
False
from ipyleaflet import Map, Marker, MarkerCluster m = Map(center=(50, 0), zoom=5) marker1 = Marker(location=(48, -2)) marker2 = Marker(location=(50, 0)) marker3 = Marker(location=(52, 2)) marker_cluster = MarkerCluster( markers=(marker1, marker2, marker3) ) m.add_layer(marker_cluster); marker_cluster..visible = False m
In order to do it I can only hide each underlying marker individually.
Would it it be a desirable feature ?
The text was updated successfully, but these errors were encountered:
Thanks, having support for visible on all layers would be nice indeed
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
When using the marker_cluster example, I cannot hide all the underlying markers at once as with other layers by setting a
visible
trait toFalse
:In order to do it I can only hide each underlying marker individually.
Would it it be a desirable feature ?
The text was updated successfully, but these errors were encountered: