New to Telerik UI for WPF? Start a free 30-day trial
Bring a Location into View
Updated on Sep 24, 2025
In order to bring a location point into view, you simply have to set the Center property of the RadMap property. Here is an example:
XAML
<telerik:RadMap x:Name="radMap"
Width="600"
Height="480" />
C#
private void BringLocationIntoView( Location desiredLocation )
{
this.radMap.Center = desiredLocation;
}