from lets_plot import * LetsPlot.setup_html() data = { 'lon': [10.014145], 'lat': [46.036282], 'label': ['Bergamo Alps'] } ggplot(data, aes(x='lon', y='lat')) + \ geom_livemap(zoom=1, location=[170, 0]) + geom_point(tooltips=layer_tooltips().line('@label')) + \ ggsize(800, 400) The cursor is hovering over the rightmost marker:
