folium icon indicating copy to clipboard operation
folium copied to clipboard

Python Data. Leaflet.js Maps.

Results 131 folium issues
Sort by recently updated
recently updated
newest added

In the layer control menu, when a user selects/checks options, allow those choices to be saved if the app/website is refreshed.

enhancement

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...

plugin

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...

enhancement

The position of the legend should be in "window coordinates", similar to mpl.legend(loc='upper left')

feature request

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],...

bug

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...

feature request

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...

enhancement

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

enhancement
plugin

```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...

enhancement
plugin
good first issue

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/): ![us-temperature-contour-map-sfc-con-temp](https://user-images.githubusercontent.com/11709858/45286971-73520400-b4e7-11e8-8e88-879171c2faf4.gif) As it...

enhancement