pointToLatLng method

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

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

Implementation

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