GeoRssSimple

This sample demonstrates displaying an ESRI.ArcGIS.Client.ToolkitDataSources GeoRSS feed draped over an ArcGISTiledMapServiceLayer. The GeoRSS feed is provided by the United States Geological Survey (USGS) and shows the point locations of major earthquakes (Magnitude 5+) over the last 7 days. A StaticResouce is defined to specify the symbology of the points using a ESRI.ArcGIS.Client SimpleRenderer.

Download Sample Application
XAML C# VB.NET
<UserControl x:Class="ArcGISWPFSDK.GeoRssSimple"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
    xmlns:esri="http://schemas.esri.com/arcgis/client/2009">
    <Grid x:Name="LayoutRoot">
        <Grid.Resources>
            <esri:SimpleRenderer x:Key="MySimpleRenderer">
                <esri:SimpleRenderer.Symbol>
                    <esri:PictureMarkerSymbol Source="/Assets/Images/quake-30x30.png" OffsetX="8" OffsetY="8" Width="16" />
                </esri:SimpleRenderer.Symbol>
            </esri:SimpleRenderer>
        </Grid.Resources>
        <esri:Map x:Name="MyMap" WrapAround="True">
            <esri:ArcGISTiledMapServiceLayer Url="http://services.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer" />
            <esri:GeoRssLayer ID="MyGeoRssLayer" Source="http://earthquake.usgs.gov/earthquakes/catalogs/7day-M5.xml" 
                              Visible="False"
                              Renderer="{StaticResource MySimpleRenderer}" >
                <esri:GraphicsLayer.MapTip>
                    <Grid Background="LightYellow">
                        <StackPanel Orientation="Horizontal" Margin="5" >
                            <TextBlock Foreground="Black">
                                <Run Text="{Binding [Title]}" />
                                <LineBreak />
                                <Run>Elevation: </Run>
                                <Run Text="{Binding [elev]}" />
                            </TextBlock>
                        </StackPanel>
                        <Border BorderBrush="Black" BorderThickness="1" />
                    </Grid>
                </esri:GraphicsLayer.MapTip>
            </esri:GeoRssLayer>
        </esri:Map>
    </Grid>
</UserControl>

Sample code usage restrictions
5/16/2014