updateMarkers method

Future<void> updateMarkers(
  1. MarkerUpdates markerUpdates
)

Updates marker configuration.

Change listeners are notified once the update has been made on the platform side.

The returned Future completes after listeners have been notified.

Implementation

Future<void> updateMarkers(MarkerUpdates markerUpdates) {
  return _streetViewFlutterPlatform.updateMarkers(markerUpdates,
      viewId: viewId);
}