orientationToPoint method

Future<Point<num>> orientationToPoint(
  1. StreetViewPanoramaOrientation orientation
)

Returns a screen location that corresponds to an orientationStreetViewPanoramaOrientation.

Implementation

Future<Point> orientationToPoint(StreetViewPanoramaOrientation orientation) {
  return _streetViewFlutterPlatform.orientationToPoint(viewId,
      orientation: orientation);
}