Closed
Description
The documentation says that Marker
has the title
attribute for setting the tooltip, but it has no effect. Hoving over the marker does not show the tooltip.
https://ipyleaflet.readthedocs.io/en/latest/api_reference/marker.html
from ipyleaflet import Map, Marker
center = (52.204793, 360.121558)
m = Map(center=center, zoom=15)
marker = Marker(location=center, draggable=False)
marker.title = "This is tooltip"
m.add_layer(marker);
m
Metadata
Metadata
Assignees
Labels
No labels