offsetToLatLng method
Converts a map point to the sphere coordinate (at a certain zoom).
Implementation
@override
LatLng offsetToLatLng(Offset point, double zoom) {
final (x, y) = _transformation.untransform(
point.dx,
point.dy,
scale(zoom),
);
return projection.unprojectXY(x, y);
}