Time slider disappears after click +- button to zoom on the map
See original GitHub issuePlease add a code sample or a nbviewer link, copy-pastable if possible
from folium.plugins import TimeSliderChoropleth
m = folium.Map(location=[40.45, -80], zoom_start=11)
g = TimeSliderChoropleth(
tracts.to_json(),
styledict=review_dict,
).add_to(m)
m
Problem description
I was able to use TimeSliderChoropleth plugin to make an interactive map to show changes over time, but as soon as I use the ± sign on the map to zoom in and out on the map, the slider disappears and I cannot get it back! Had similar issue when testing the example case given on Github. Any advice on how to work around this? Thank you very much!
Expected Output
Output of folium.__version__
Issue Analytics
- State:
- Created 5 years ago
- Comments:8 (1 by maintainers)
Top Results From Across the Web
Time slider disappears after click +- button to zoom on the map
Time slider disappears after click +- button to zoom on the map.
Read more >Historical Imagery : Time Slider does not appear
If I zoom initially, and click on the View Historical Imagery, the Time Slider does not appear. If I initially select Historical Imagery,...
Read more >Base map disappears when zooming in - Esri Community
Hi, Any action (using comboox list) to zoom to a selected sub-geography of the country makes the base map disappear from my application....
Read more >How to unlock a zoom slider in Google Maps?
Last month Google announced a neat trick which allows to switch zoom buttons from plus and minus to the old slider. In order...
Read more >Automatically panning the map in ArcGIS when using the Time ...
Yes, what you want to do is possible using just desktop. However, rather than using the Time Slider you will be using the...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Yes I believe these are the same problems. The map fills 100 % of its container, and then we add the slider on top, expanding beyond the size of the container. Something like that.
Let’s close this one in favor of https://github.com/python-visualization/folium/issues/1301