updateImageSource method

Future<void> updateImageSource(
  1. String imageSourceId,
  2. Uint8List? bytes,
  3. LatLngQuad? coordinates
)

Update the image and/or coordinates of an image source. Not implemented on web.

Implementation

Future<void> updateImageSource(
    String imageSourceId, Uint8List? bytes, LatLngQuad? coordinates) {
  return _vietmapGLPlatform.updateImageSource(
      imageSourceId, bytes, coordinates);
}