fill_color: string, optional
Area fill color, defaults to blue. Can pass a hex code, color name,
or if you are binding data, one of the following color brewer palettes:
'BuGn', 'BuPu', 'GnBu', 'OrRd', 'PuBu', 'PuBuGn', 'PuRd', 'RdPu',
'YlGn', 'YlGnBu', 'YlOrBr', and 'YlOrRd'.
Describe the bug
https://github.com/python-visualization/folium/blob/main/folium/features.py#L1372
Quote:
This is incomplete. You can also do
Choropleth(fill_color='viridis')and it works just fine.So it looks like it can use other things from
branca.colormapbut I'm not sure what is the full extent of options thatChoroplethwould accept.Expected behavior
The help should describe the actual behavior there. I would propose a PR, but again, I am not sure what are all the options that are acceptable there.