尝试在 Python 中设置 html 弹出窗口,使用 folium 来适应图像大小
Trying to set up a html popup in Python, using folium to fit images sizes
我正在尝试编写此代码以在默认地图上使用 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%;">
解决方法是在 运行 脚本之前减小图像大小。但是必须有一个聪明的方法来做到这一点。
我正在尝试编写此代码以在默认地图上使用 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%;">
解决方法是在 运行 脚本之前减小图像大小。但是必须有一个聪明的方法来做到这一点。