fromScreenPoint method
Implementation
@override
Future<dynamic> fromScreenPoint(int x, int y) async {
final protection = controller.getProjection();
return protection
.coordsFromContainerPoint(WebPoint(x.toDouble(), y.toDouble()))
.toLatLng()
.toMessageable();
}