Hi Fuse,
I am a beginner and i wrote a small sidebar navigation. But when i use NativeViewHost to insert a map, sidebar will go under map. But i was able to fix it using below code. But it will only work in iOS device and android device will have the same problem. Anyone can help me with this?
<App>
<EdgeNavigator HitTestMode="LocalBoundsAndChildren" ux:Class="nav">
<Panel Width="200" EdgeNavigation.Edge="Left" Background="#f63">
</Panel>
</EdgeNavigator>
<NativeViewHost>
<nav/>
<MapView Latitude="59.911567" Longitude="10.741030" Zoom="10">
<MapMarker Latitude="59.911567" Longitude="10.741030" Label="Fuse HQ"/>
</MapView>
</NativeViewHost>
</App>