onPointerCancel method
Implementation
void onPointerCancel(PointerCancelEvent event) {
--_pointerCounter;
if (mapState.options.onPointerCancel != null) {
final latlng = _offsetToCrs(event.localPosition);
mapState.options.onPointerCancel!(event, latlng);
}
}