I have defined in my Python program:
fig = Figure(width, height)
map = folium.Map(location=[y, x], zoom_start=2)
fig.add_child(map)
How can I add text to my map using absolute position (not latitude/longitude one) ? A position defined by a percentage of the width and the height of the Figure. Something like
Text("Toto is my name", pos_x=0.1*width,pos_y=0.05*height)