Hover text appears above hover box

I am having a scatterplot that shows a point on a map and I added a very simple hover text, but when I hover over it on the map, the text shows above the box in which its suppose to be. Do you have any idea on how to fix it, already tried hovertemplate as well, but no change there. I don’t know if it has something to do with my map configuration or if I am just doing something wrong.

go.Scattermap(
    lon=df_line\["geometry"\].x,
    lat=df_line\["geometry"\].y,
    mode="markers",
    name=f"Subway Station {line}",
    marker=dict(
        size=10,
        color=SUBWAY_ENTRANCES_LINE_COLORS.get(line, "gray"),
        opacity=0.9
    ),
    legendgroup="travel",
    text=df_line\["vst_nazev"\] + f" (Line {line})",
    hoverinfo="text"
)

Welcome to the forums, @Joseph_Meurer

Unfortunately I don’t understand what you are referring to. Could you add a full example which we can copy&paste to our machines?