gpt4 book ai didi

python - 尝试在 Python 中设置一个 html 弹出窗口,使用 folium 来适应图像大小

转载 作者:太空宇宙 更新时间:2023-11-04 04:48:21 25 4
gpt4 key购买 nike

我正在尝试编写此代码以在默认 map 上使用 folium 显示 popups。以下循环在我的数据库中搜索每个的位置,以显示属于它的图片。该代码运行良好,但我无法自定义图像的大小以适应属于弹出窗口的 iframe。我希望弹出窗口没有任何滚动条。有什么建议吗?

这是代码:

for i in range(0, len(locationlist)):
folium.Marker(
locationlist[i],
popup = folium.Popup(IFrame('<img src="data:image/jpeg;base64,
{}">'.format(base64.b64encode(open(df6['path'][i], 'rb').read()).decode()),
width=500, height=300), max_width=500),
icon = folium.Icon(color='green')
).add_to(m)

这是弹出窗口中图像现在的样子的示例:image

最佳答案

您可以尝试将图像放入 iframe,方法是在 html 代码 中写入如下内容:

<img style="width:100%; height:100%;">

关于python - 尝试在 Python 中设置一个 html 弹出窗口,使用 folium 来适应图像大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48973335/

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