onPointerHover method
Implementation
void onPointerHover(PointerHoverEvent event) {
if (mapState.options.onPointerHover != null) {
final latlng = _offsetToCrs(event.localPosition);
mapState.options.onPointerHover!(event, latlng);
}
}
void onPointerHover(PointerHoverEvent event) {
if (mapState.options.onPointerHover != null) {
final latlng = _offsetToCrs(event.localPosition);
mapState.options.onPointerHover!(event, latlng);
}
}