screenOffsetToLatLngUnrotated method

LatLng screenOffsetToLatLngUnrotated(
  1. Offset offset
)

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);
}