I know there's probably a simple solution to this problem but I cant find it for the life of me. Im trying to use RadMap in order to display a floor plan that I can later add points to similar to the demo shown here. The issue that im facing is that I cant get the Floor plan to appear. Ive tried using different images with different sizes and that has yet to yield any results when I run it I simply see a blank canvass with the coordinates. The floor plan is saved as a FloorMap.png and for now I have placed it in my desktop. I was not sure how to set the GeoBounds so I have left them as they appear in the sample used here
<UserControl x:Class="testingxaml.MainPage" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" HorizontalAlignment="Center" VerticalAlignment="Center" mc:Ignorable="d" d:DesignWidth="625" d:DesignHeight="629"> <Grid x:Name="LayoutRoot"> <telerik:RadMap x:Name="xRadMap" NavigationVisibility="Collapsed" ZoomBarVisibility="Collapsed" CommandBarVisibility="Collapsed" Center="42.72481708629, 23.3176519378416"> <telerik:RadMap.Provider> <telerik:UriImageProvider GeoBounds="42.786, 23.17, 25, 14" Uri=file:///C:/Users/*****/Desktop/FloorMap.png/> </telerik:RadMap.Provider> </telerik:RadMap> </Grid></UserControl>
