toScreenLocation method
Implementation
@override
Future<Point> toScreenLocation(LatLng latLng) async {
var screenPosition =
_map.project(LngLat(latLng.longitude, latLng.latitude));
return Point(screenPosition.x.round(), screenPosition.y.round());
}