pointToLatLng method

  1. @override
LatLng pointToLatLng(
  1. Point<num> point,
  2. double zoom
)
override

Converts a map point to the sphere coordinate (at a certain zoom).

Implementation

@override
LatLng pointToLatLng(Point point, double zoom) => projection.unproject(
    _getTransformationByZoom(zoom).untransform(point, scale(zoom)));