在 Python 中从 folium 地图中删除滚动条

我最近开始使用folium有点面向 Web 开发人员的工作,但我不是。所以我创建了一个地图并在上面注入了一个标题,如下所示:


m = folium.Map(location=loc,

       center=center, zoom_start=13)


title_html = '''

     <h3 align="center" style="font-size:20px"><b>Titly title</b></h3>

     ''' 

m.get_root().html.add_child(folium.Element(title_html))

display(m)

https://i.stack.imgur.com/UvC9U.png

但这会产生一个滚动条,使导航有点不舒服。在添加标题之前,我没有遇到任何问题,如您所见:

https://i.stack.imgur.com/sCRgO.png

那么,有没有什么方法可以在不添加滚动条的情况下添加标题呢?



慕容708150
浏览 65回答 1
1回答

米脂

它与 html 的style属性有关,这些属性主要在标签之间说明<head></head>。title_html所以你可以如下转换变量:title_html = '''&nbsp; &nbsp; &nbsp;<head><style> html { overflow-y: hidden; } </style></head>&nbsp; &nbsp; &nbsp;<h3 align="center" style="font-size:20px"><b>Titly title</b></h3>&nbsp; &nbsp; &nbsp;'''&nbsp;
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Html5