latLngToXY method
Converts a point on the sphere surface (with a certain zoom) to a scaled map point.
Implementation
@override
(double, double) latLngToXY(LatLng latlng, double scale) {
final (x, y) = projection.projectXY(latlng);
return _transformation.transform(x, y, scale);
}