I have the following XAML in my WPF application:
<TabItem x:Name="MapTab">
<syncfusionM:SfMap x:Name="sfMap">
<syncfusionM:SfMap.Layers>
<syncfusionM:ImageryLayer LayerType="OSM"/>
</syncfusionM:SfMap.Layers>
</syncfusionM:SfMap>
</TabItem>
How would I point this to a custom map server? In the Xamarin version of the control I would use RequestTileUri
Thanks