Folium maps and Dash

If you can export your folium map as a standalone HTML file (i.e. with JS and CSS embedded inside it), then you might be able to embed it in the Dash app with

your_folium_html_string = '...'
html.Iframe(srcDoc=your_folium_html_string)