This question is locked. New answers and comments are not allowed.
1. Hi I love this product and I am trying to exploit as much possible. Now I am facing this problem with raster images.
2. I have downloaded calibrated Google image using this software gmapmaker (http://damiendebin.net/archives/gMapMaker/). I can open the PNG/JPEG file in software OziExplorer and it is calibrated properly. But when I use the same image with radmap, it does not show correct zoom and also mappoints at wrong locations. Slide 1 shows the location on the google map and slide 2 shows same location on radmap. The zoom in both case are also not matching.
3. Also I have used Geobounds , I still can pan beyond the image. See slide 3. My XAML code is given below :
2. I have downloaded calibrated Google image using this software gmapmaker (http://damiendebin.net/archives/gMapMaker/). I can open the PNG/JPEG file in software OziExplorer and it is calibrated properly. But when I use the same image with radmap, it does not show correct zoom and also mappoints at wrong locations. Slide 1 shows the location on the google map and slide 2 shows same location on radmap. The zoom in both case are also not matching.
3. Also I have used Geobounds , I still can pan beyond the image. See slide 3. My XAML code is given below :
UserControl x:Class="Airport.MainPage" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" mc:Ignorable="d" d:DesignWidth="640" d:DesignHeight="480"> <Grid x:Name="LayoutRoot"> <telerik:RadMap x:Name="RadMap1" ZoomLevel="10" MinZoomLevel="10" MaxZoomLevel="11" Center="34.885931,73.828125" NavigationVisibility="Collapsed" ZoomBarVisibility="Collapsed" CommandBarVisibility="Collapsed"> <telerik:RadMap.Provider> <telerik:UriImageProvider GeoBoundsNW="34.649025753526985,72.9876708984375" GeoBoundsSE="33.4978881668521,76.5692138671875" Uri="DataSources/airport-{zoom}.jpg" MaxZoomLevel="11" MinZoomLevel="1" /> </telerik:RadMap.Provider> <telerik:InformationLayer> <telerik:MapPinPoint telerik:MapLayer.Location="33.98778,74.772949" Background="#80808080" Foreground="White" BorderBrush="Black" BorderThickness="1" Text="Airport"> </telerik:MapPinPoint> </telerik:InformationLayer> </telerik:RadMap> </Grid></UserControl>