folium
folium copied to clipboard
Python Data. Leaflet.js Maps.
In the layer control menu, when a user selects/checks options, allow those choices to be saved if the app/website is refreshed.
Creating a dark mode feature for Folium seems necessary. One way to implement this feature is to wrap [Leaflet.TileLayer.ColorFilter](https://github.com/xtk93x/Leaflet.TileLayer.ColorFilter) plugin, which applies CSS filters on map tiles. A nice demo...
Hi, I am having issues with trying to change the line colour/width/opacity/removing dashed line for the TimeSliderChoropleth, is this possible or would it be a possible feature add please? The...
The position of the legend should be in "window coordinates", similar to mpl.legend(loc='upper left')
data = pd.DataFrame({ 'Latitude': [2, 7, 2, 2, -4.03, 2, 36.82, 2], 'Longitude': [49, 66, 49, 49, 5.33, 49, -1.29, 49], 'Count': [40, 12, 22, 3, 23, 30, 100, 200],...
First of all incredible progress from the last time I have checked folium, my respect to the team! I am trying to use some examples from Colormaps.ipynb and it seems...
This is more of a feature request, as I don't think this already works. But it would be very useful to have the possibility to render a map, say with...
Hi All, It would be great if we could get PolylineDecorator extension for folium. It helps to beautify the lines like for example adding arrows and etc. https://github.com/bbecquet/Leaflet.PolylineDecorator
```python import folium loc=[50.65795773762609, -1.2263860950441539] m=folium.Map(location=loc, zoom_start=12) for i in range(5): folium.Marker(loc, popup='{}'.format( i )).add_to(m) m ``` When plotting markers geocoded from things like UK postcodes, it's quite common to...
Dear all I would like to make a map of weather-like data as temperature or pressure on a folium map similar to the plot below (from https://cdoovision.com/us-temperature-contour-map/):  As it...