toScreenLocationBatch method
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);
}
}