unproject method
Implementation
@override
LatLng unproject(CustomPoint point) {
var d = 180 / math.pi;
return LatLng(
inclusiveLat(
(2 * math.atan(math.exp(point.y / r)) - (math.pi / 2)) * d),
inclusiveLng(point.x * d / r));
}