orientationToPoint method
Returns a screen location that corresponds to an orientationStreetViewPanoramaOrientation. Web not support
Implementation
Future<Point> orientationToPoint(StreetViewPanoramaOrientation orientation) {
if (kIsWeb)
throw UnsupportedError(
"[orientationToPoint] is not yet supported for Web.");
return _streetViewFlutterPlatform.orientationToPoint(viewId,
orientation: orientation);
}