unproject method

  1. @override
LatLng unproject(
  1. UPoint point
)
override

Given a projected coordinate returns the corresponding GeoPosition. The inverse of project.

Implementation

@override
LatLng unproject(UPoint point) {
  return LatLng(wrapLat(point.y), wrapLng(point.x));
}