gpt4 book ai didi

python - 将鼠标悬停在 Folium 的弹出窗口中

转载 作者:行者123 更新时间:2023-11-30 22:45:48 30 4
gpt4 key购买 nike

用一个像这样的简单例子:

import folium

map_1 = folium.Map(location=[45.372, -121.6972], zoom_start=12,
tiles='Stamen Terrain')
folium.Marker([45.3288, -121.6625], popup='Mt. Hood Meadows').add_to(map_1)
map_1

只要把鼠标放上去就可以弹出一个弹出窗口吗?这可以用大叶吗?

最佳答案

更新答案

事实证明,这个功能已经被放入 folium 的代码库中。

只需添加 tooltip 参数,如下所示:

import folium

map_1 = folium.Map(location=[45.372, -121.6972], zoom_start=12, tiles='Stamen Terrain',
tooltip = 'This tooltip will appear on hover' # THIS
)
folium.Marker([45.3288, -121.6625], popup='Mt. Hood Meadows').add_to(map_1)
map_1

关于python - 将鼠标悬停在 Folium 的弹出窗口中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41095716/

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