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;
}