pixelsForCoordinates method

Future<List<ScreenCoordinate?>> pixelsForCoordinates(
  1. List<Point> coordinates
)

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

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

Implementation

Future<List<ScreenCoordinate?>> pixelsForCoordinates(
        List<Point> coordinates) =>
    _cameraManager.pixelsForCoordinates(coordinates);