screenOffsetToLatLngUnrotated method
Implementation
LatLng screenOffsetToLatLngUnrotated(Offset offset) {
final localPointCenterDistance =
nonRotatedSize.center(Offset.zero) - offset;
final mapCenter = crs.latLngToOffset(center, zoom);
final point = mapCenter - localPointCenterDistance;
return crs.offsetToLatLng(point, zoom);
}