unprojectAtZoom method

LatLng unprojectAtZoom(
  1. Offset point, [
  2. double? zoom
])

Calculates the LatLng for the given point using this camera's crs and zoom (or the provided zoom).

Implementation

LatLng unprojectAtZoom(Offset point, [double? zoom]) =>
    crs.offsetToLatLng(point, zoom ?? this.zoom);