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:
New to Telerik UI for WPF? Download free 30-day trial
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:
<telerik:RadMap x:Name="radMap"
Width="600"
Height="480" />
private void BringLocationIntoView( Location desiredLocation )
{
this.radMap.Center = desiredLocation;
}
Private Sub BringLocationIntoView(ByVal desiredLocation As Location)
Me.radMap.Center = desiredLocation
End Sub
Copyright © 2025 Progress Software Corporation and/or its subsidiaries or affiliates.
All Rights Reserved.
Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries. See Trademarks for appropriate markings.