I want to migrate my xamarin application to the new MAUI project template. In Xamarin, I have a page view (xaml) with a map control bound to the viewmodel Map property
<ContentView HeightRequest="650" Content="{Binding Map}"/>
Now in MAUI, using BlazorWebView, I am trying to create a new razor page but I do not know how to bind the MAUI Map control to the razor page.
I would appreciate any help. Thank you in advance.
I want to bind the Map property of type Microsoft.Maui.Maps.Map to the Map.razor page