setPosition method

Future<void> setPosition(
  1. int viewId, {
  2. LatLng? position,
  3. String? panoId,
  4. int? radius,
  5. StreetViewSource? source,
})

Sets panorama by given location

Return Future while the change has been made on the platform side.

Implementation

Future<void> setPosition(int viewId,
    {LatLng? position,
    String? panoId,
    int? radius,
    StreetViewSource? source}) {
  throw UnimplementedError('setPosition() has not been implemented.');
}