addImageSource method
Adds an image source to the style currently displayed in the map, so that it can later be referred to by the provided id.
Implementation
Future<void> addImageSource(
String imageSourceId, Uint8List bytes, LatLngQuad coordinates) async {
if (_disposed) {
return;
}
return await _nbMapsGlPlatform.addImageSource(
imageSourceId, bytes, coordinates);
}