I want to draw a simple ellipse in radmap with width and height20000, but incorrectly like an elongated oval is drawn Why do this? Other shape like rectangle has same problem
I add a simple radmap:
too.
<telerik:RadMap x:Name="radMap">
<telerik:RadMap.Provider>
<telerik:EmptyProvider />
</telerik:RadMap.Provider>
<telerik:InformationLayer x:Name="informationLayer">
</telerik:InformationLayer>
</telerik:RadMap> In code behind:var newShape = new MapEllipse()
{
Location = new Location()
{
Latitude = 50,
Longitude = -111,
},
Fill = new SolidColorBrush(Color.FromArgb (0xFF, 0xF0, 0xB5, 0x85)),
Width = 20000,
Height = 20000
};
this.informationLayer.Items.Add(newShape);
radMap.Center = new Location( newShape.Location.Latitude, newShape.Location.Longitude);