pointToOrientation method

Future<StreetViewPanoramaOrientation> pointToOrientation(
  1. Point<num> point
)

Return the orientationStreetViewPanoramaOrientation that corresponds to a screen location. Web not support

Implementation

Future<StreetViewPanoramaOrientation> pointToOrientation(Point point) {
  if (kIsWeb)
    throw UnsupportedError(
        "[pointToOrientation] is not yet supported for Web.");
  return _streetViewFlutterPlatform.pointToOrientation(viewId, point: point);
}