pointToOrientation method
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);
}