unproject method

LatLng unproject(
  1. Point<num> point, [
  2. double? zoom
])

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

Implementation

LatLng unproject(Point point, [double? zoom]) =>
    crs.pointToLatLng(point, zoom ?? this.zoom);