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