Python folium map 和 jupyter notebook cell 之间的白色间隙

White gap between Python folium map and jupyter notebook cell

如何消除 Python folium 地图和我的 jupyter 笔记本中的下一个单元格之间不需要的间隙。这是重现我的问题的天真的代码:

import folium
m = folium.Map(width=600, height=400, location=[12, 12], zoom_start=2)
m

这里的解决方案需要用到图:

from branca.element import Figure
fig = Figure(width=600, height=400)
m = folium.Map(location=[12, 12], zoom_start=2)
fig.add_child(m)