toScreenLocationBatch method

Future<List<Point<num>>?> toScreenLocationBatch(
  1. Iterable<LatLng> latLngs
)

Implementation

Future<List<Point>?> toScreenLocationBatch(Iterable<LatLng> latLngs) async {
  if (_disposed) {
    return null;
  }
  try {
    return await _nbMapsGlPlatform.toScreenLocationBatch(latLngs);
  } catch (e) {
    if (kDebugMode) {
      print(e);
    }
    return Future.error(e);
  }
}