pointToOrientation method
Return the orientationStreetViewPanoramaOrientation that corresponds to a screen location.
Implementation
@override
Future<StreetViewPanoramaOrientation> pointToOrientation(int viewId,
{Point? point}) async {
return StreetViewPanoramaOrientation.fromMap(await channel(viewId)!
.invokeMethod("streetView#pointToOrientation", [point!.x, point.y]));
}