【发布时间】:2025-11-27 03:35:01
【问题描述】:
我在 Databricks 中使用 Folium 时看到空白的 HTML 画布。我正在使用 python 3.5
我已经在 Databricks 集群中安装了所有必需的包。
import folium
folium_map = folium.Map([-87.634362, 41.894722], zoom_start = 12)
width =100
height =400
html_string = folium_map._repr_html_()
# for python 3.5
h = '<iframe srcdoc = {html_string} width ={width} height ={height} > </iframe>'.format(html_string = html_string, width =width, height =height)
displayHTML(h)
我希望在画布上看到一张地图。现在,它有一个空的画布。 非常感谢您的帮助。
【问题讨论】:
标签: python iframe databricks folium