【发布时间】:2020-12-02 08:58:31
【问题描述】:
我已经在我的 Python 程序中定义了:
fig = Figure(width, height)
map = folium.Map(location=[y, x], zoom_start=2)
fig.add_child(map)
如何使用绝对位置(不是纬度/经度之一)将文本添加到我的地图? 由图形的宽度和高度的百分比定义的位置。 类似的东西
Text("Toto is my name", pos_x=0.1*width,pos_y=0.05*height)
【问题讨论】: