gpt4 book ai didi

python - 从Python中的folium map 中删除滚动条

转载 作者:行者123 更新时间:2023-12-04 10:17:52 26 4
gpt4 key购买 nike

我最近开始使用 folium这有点面向 Web 开发人员,而我不是。所以我创建了一个 map 并在其上注入(inject)了一个标题,如下所示:

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)

enter image description here

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

enter image description here

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

谢谢!

最佳答案

它与html的style有关<head></head> 之间的属性主要是标签。所以你可以转换变量title_html如下 :

title_html = '''
<head><style> html { overflow-y: hidden; } </style></head>
<h3 align="center" style="font-size:20px"><b>Titly title</b></h3>
'''

关于python - 从Python中的folium map 中删除滚动条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60995762/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com