UI: Fix map widget tooltip closing when hovering from overlay to tooltip (hover mode)

This commit is contained in:
Vladyslav_Prykhodko 2025-08-19 19:31:24 +03:00
parent 44e7684938
commit c5f33ad7f6

View File

@ -56,6 +56,9 @@ export const createTooltip = (map: TbMap<any>,
}
}
});
layer.on('mousemove', (e) => {
tooltip.setLatLng(e.latlng);
});
layer.on('mouseout', () => {
tooltip.close();
});