New to Telerik UI for WinUI? Download free 30-day trial

Bring a Location into View

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

<dataVisualization:RadMap x:Name="radMap" 
                Width="600" 
                Height="480" /> 

Example 2

private void BringLocationIntoView( Location desiredLocation ) 
{ 
    this.radMap.Center = desiredLocation; 
} 

See Also

In this article
Not finding the help you need?