Hello,
As you could see from your link, this way of viewing panoramas is done through the JS framework.
On Xamarin, you could use webview to display this html page to invoke this framework:
<WebView x:Name="webview" HeightRequest="500" WidthRequest="400">
<WebView.Source>
<HtmlWebViewSource>
<HtmlWebViewSource.Html>
<![CDATA[
Add the HTML here.
]]>
</HtmlWebViewSource.Html>
</HtmlWebViewSource>
</WebView.Source>
</WebView>
Then, you could invoke the javascrpit methods on Xamarin via EvaluateJavaScriptAsync
method.
Please refer to Xamarin.Forms WebView to get more details.
Best Regards,
Alec Liu.
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our [documentation][1] to enable e-mail notifications if you want to receive the related email notification for this thread.