project method

  1. @nonVirtual
Point<double> project(
  1. LatLng latlng
)

Converts a LatLng to a coordinates and returns them as Point object.

Implementation

@nonVirtual
Point<double> project(LatLng latlng) {
  final (x, y) = projectXY(latlng);
  return Point<double>(x, y);
}