coordinatesForPixels method

Future<List<Point?>> coordinatesForPixels(
  1. List<ScreenCoordinate?> pixels
)

Calculates geographical coordinates (i.e., longitude-latitude pairs) that correspond to screen coordinates.

The screen coordinates are in logical pixels relative to the top left corner of the map (not of the whole screen).

Implementation

Future<List<Point?>> coordinatesForPixels(List<ScreenCoordinate?> pixels) =>
    _cameraManager.coordinatesForPixels(pixels);