registerOnMouseEnterEvent method
Registers a callback for mouse enter events.
The provided callback will be invoked with the original Flutter PointerEnterEvent when the mouse enters the map widget bounds.
Implementation
void registerOnMouseEnterEvent(final void Function(PointerEnterEvent) pFunc) {
_mouseEnteredCallback = pFunc;
}