Hi,
For my map display, I am suppose to show a custom image that represents a 15m x 10m area from a geo point.
<
Window
x:Class
=
"telerikMapSample.MainWindow"
xmlns:telerik
=
"http://schemas.telerik.com/2008/xaml/presentation"
Title
=
"MainWindow"
HorizontalAlignment
=
"Center"
VerticalAlignment
=
"Center"
Height
=
"564.851"
Width
=
"805.313"
>
<
Grid
>
<
Grid
x:Name
=
"LayoutRoot"
Width
=
"784"
Height
=
"484"
>
<
Grid.RowDefinitions
>
<
RowDefinition
Height
=
"450"
/>
<
RowDefinition
Height
=
"Auto"
/>
</
Grid.RowDefinitions
>
<
telerik:RadMap
x:Name
=
"RadMap1"
Grid.Row
=
"0"
ZoomLevel
=
"24"
MinZoomLevel
=
"24"
MaxZoomLevel
=
"24"
Center
=
"1.352083, 103.819836"
NavigationVisibility
=
"Collapsed"
ZoomBarVisibility
=
"Collapsed"
CommandBarVisibility
=
"Collapsed"
MiniMapExpanderVisibility
=
"Collapsed"
MouseMove
=
"RadMap1_MouseMove"
>
<
telerik:RadMap.Provider
>
<
telerik:UriImageProvider
GeoBounds
=
"1.352083, 103.819836, 0.0001, 0.00015"
Uri
=
"/telerikMapSample;component/Resources/osm_12.png"
/>
</
telerik:RadMap.Provider
>
</
telerik:RadMap
>
<
Grid
x:Name
=
"Row2"
Grid.Row
=
"1"
>
<
Grid.ColumnDefinitions
>
<
ColumnDefinition
/>
<
ColumnDefinition
/>
<
ColumnDefinition
/>
<
ColumnDefinition
/>
</
Grid.ColumnDefinitions
>
<
Label
Grid.Column
=
"0"
FontSize
=
"20"
>Latitiude: </
Label
>
<
Label
Grid.Column
=
"2"
FontSize
=
"20"
>Longitude: </
Label
>
<
TextBlock
x:Name
=
"LatValue"
FontSize
=
"20"
Grid.Column
=
"1"
/>
<
TextBlock
x:Name
=
"LongValue"
FontSize
=
"20"
Grid.Column
=
"3"
/>
</
Grid
>
</
Grid
>
</
Grid
>
</
Window
>
The problem now that I am facing is that after measuring the latitude and longitude at each end of the boundary, I am getting
around 0.00004deg and 0.00007deg respectively instead of the 0.00001deg and 0.00015deg. How can I fix this accuracy problem?
I appreciate the technical support!