Doing a very simple shapefile based map. I can see the map in preview, but not when I debug. shapefiles are in a folder called Shapes just off the project root.
<telerik:RadMap HorizontalAlignment="Left" Center="40,-74" VerticalAlignment="Top" Height="500" Width="600">
<telerik:RadMap.Provider>
<telerik:EmptyProvider />
</telerik:RadMap.Provider>
<telerik:InformationLayer x:Name="informationLayer" >
<telerik:InformationLayer.Reader>
<telerik:MapShapeReader x:Name="xShapReader"
Source="pack://siteoforigin:,,,/Shapes/cb_2013_us_state_500k.shp"
DataSource="pack://siteoforigin:,,,/Shapes/cb_2013_us_state_500k.dbf"
PreviewReadCompleted="MapShapeReader_PreviewReadCompleted" />
</telerik:InformationLayer.Reader>
<telerik:InformationLayer.ShapeFill>
<telerik:MapShapeFill Fill="#FFF0D9" Stroke="#B1946D" StrokeThickness="1" />
</telerik:InformationLayer.ShapeFill>
</telerik:InformationLayer>
</telerik:RadMap>
<telerik:RadMap HorizontalAlignment="Left" Center="40,-74" VerticalAlignment="Top" Height="500" Width="600">
<telerik:RadMap.Provider>
<telerik:EmptyProvider />
</telerik:RadMap.Provider>
<telerik:InformationLayer x:Name="informationLayer" >
<telerik:InformationLayer.Reader>
<telerik:MapShapeReader x:Name="xShapReader"
Source="pack://siteoforigin:,,,/Shapes/cb_2013_us_state_500k.shp"
DataSource="pack://siteoforigin:,,,/Shapes/cb_2013_us_state_500k.dbf"
PreviewReadCompleted="MapShapeReader_PreviewReadCompleted" />
</telerik:InformationLayer.Reader>
<telerik:InformationLayer.ShapeFill>
<telerik:MapShapeFill Fill="#FFF0D9" Stroke="#B1946D" StrokeThickness="1" />
</telerik:InformationLayer.ShapeFill>
</telerik:InformationLayer>
</telerik:RadMap>