updateStreetView method

Future updateStreetView(
  1. Map<String, dynamic> optionsUpdate
)

Updates configuration options of the street view user interface.

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<dynamic> updateStreetView(Map<String, dynamic> optionsUpdate) {
  return _streetViewFlutterPlatform.updateStreetViewOptions(optionsUpdate,
      viewId: viewId);
}