toLatLng method
Implementation
@override
Future<LatLng> toLatLng(Point<num> screenLocation) async {
final lngLat =
_map.unproject(geo_point.Point(screenLocation.x, screenLocation.y));
return LatLng(lngLat.lat as double, lngLat.lng as double);
}