toScreenPoint method
Implementation
@override
Future<dynamic> toScreenPoint(LatLng position) async {
final protection = controller.getProjection();
return protection
.containerPointFromCoords(WebLatLng.fromLatLng(position))
.toPoint()
.toMessageable();
}