New to Telerik UI for WinUI? Start a free 30-day trial
Bring a Location into View
Updated on Mar 26, 2026
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:
Example 1
XAML
<dataVisualization:RadMap x:Name="radMap"
Width="600"
Height="480" />
Example 2
C#
private void BringLocationIntoView( Location desiredLocation )
{
this.radMap.Center = desiredLocation;
}