<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: GraphicsLayer Spatial Reference in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/graphicslayer-spatial-reference/m-p/202890#M5035</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;So, the orig problem described in the first post is not solved, but the export problem I was seeing (which I thought was related) is solved. &lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;A graphicslayer has no spatial reference associated to it. The spatial reference is defined by graphic (and can be different by graphic).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 Feb 2013 06:39:14 GMT</pubDate>
    <dc:creator>DominiqueBroux</dc:creator>
    <dc:date>2013-02-22T06:39:14Z</dc:date>
    <item>
      <title>GraphicsLayer Spatial Reference</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/graphicslayer-spatial-reference/m-p/202885#M5030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi, &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I want to add a graphics layer in Map. But this layer is lack of Spatial Reference. I cannot specify the spatial reference, because it's property is read only(just get is implemented in the API).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is xaml (It is generated when I create an ESRI SL Application in Visual Studio)&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;
&amp;lt;esri:Map x:Name="Map" Background="White"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; ....
&amp;nbsp;&amp;nbsp;&amp;nbsp; ....
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:Map.Layers&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:ArcGISTiledMapServiceLayer ID="BaseLayer"
 Url="http://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer"/&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:Map.Layers&amp;gt;
&amp;lt;/esri:Map&amp;gt;
&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I want to create Graphics Layer with the following code behind C# code&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;
public GraphicsLayer CreatePointGraphicLayer(string ID,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SpatialReference spatial_reference,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; List&amp;lt;double&amp;gt; x_list,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; List&amp;lt;double&amp;gt; y_list,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; List&amp;lt;string&amp;gt; fields,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; List&amp;lt;string[]&amp;gt; other_fields_values)
{
 GraphicsLayer graphics_layer = new GraphicsLayer();
 graphics_layer.ID = ID;

 SimpleMarkerSymbol simple_marker_symbol = new SimpleMarkerSymbol();
 simple_marker_symbol.Color = new SolidColorBrush(Colors.Red);

 for (int i = 0; i &amp;lt; x_list.Count; i++)
 {
&amp;nbsp; Graphic graphic = new Graphic()
&amp;nbsp; {
&amp;nbsp;&amp;nbsp; Symbol = simple_marker_symbol,
&amp;nbsp;&amp;nbsp; Geometry = new MapPoint(x_list&lt;I&gt;, y_list&lt;I&gt;, spatial_reference)
&amp;nbsp; };

&amp;nbsp; for (int j = 0; j &amp;lt; fields.Count; j++)
&amp;nbsp; {
&amp;nbsp;&amp;nbsp; graphic.Attributes[fields&lt;J&gt;] = other_fields_values&lt;I&gt;&lt;J&gt;;
&amp;nbsp; }

&amp;nbsp; graphics_layer.Graphics.Add(graphic);
 }

 return graphics_layer;
}
&lt;/J&gt;&lt;/I&gt;&lt;/J&gt;&lt;/I&gt;&lt;/I&gt;&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The code above create the graphics layer and when I put it into Map with the following lines of code, I can see the created graphics but lack of spatial reference.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;
GraphicsLayer g_layer = CreatePointGraphicLayer(....) //I omit this part
Map.Layers.Add(g_layer); 
&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;How can I use spatial reference in graphics layer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in advance.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Kerem.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 May 2011 11:04:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/graphicslayer-spatial-reference/m-p/202885#M5030</guid>
      <dc:creator>KeremCelik</dc:creator>
      <dc:date>2011-05-02T11:04:14Z</dc:date>
    </item>
    <item>
      <title>Re: GraphicsLayer Spatial Reference</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/graphicslayer-spatial-reference/m-p/202886#M5031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You are right, we cant' set the spatial reference of a graphicslayer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If your graphics layer is the only layer in the map, set the spatial reference of the map instead (by setting the extent of the map). If in your map there is a tiled layer, the spatial reference of the map will be defined by the spatial reference of the tiled layer.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 May 2011 12:07:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/graphicslayer-spatial-reference/m-p/202886#M5031</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2011-05-02T12:07:53Z</dc:date>
    </item>
    <item>
      <title>Re: GraphicsLayer Spatial Reference</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/graphicslayer-spatial-reference/m-p/202887#M5032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm having the same issue, and I have a tiled layer in the map, but the graphics layer is NOT getting it's spacial reference set...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2011 17:50:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/graphicslayer-spatial-reference/m-p/202887#M5032</guid>
      <dc:creator>KevinKing</dc:creator>
      <dc:date>2011-06-16T17:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: GraphicsLayer Spatial Reference</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/graphicslayer-spatial-reference/m-p/202888#M5033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I also see this problem. I am using ESRI SL 3.0 API.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My GraphicsLayer has a null SpatialReference. My map has a spatial reference.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is causing a problem for me because I am trying to use the PrintTask (for ArcGIS 10.1 printing). In this state, I am finding that a GraphicsLayer with a FeatureSet containing text graphics is NOT properly translated to web map json, and therefore does not print any of the text graphics.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;However, if I hand edit the json and add a spatial reference to GraphicsLayer's featureSet:, then the text prints.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So, does anyone know how to set the SpatialReference on a GraphicsLayer?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-Cory&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Feb 2013 16:45:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/graphicslayer-spatial-reference/m-p/202888#M5033</guid>
      <dc:creator>deleted-user-Ohz6rwd1kavx</dc:creator>
      <dc:date>2013-02-21T16:45:49Z</dc:date>
    </item>
    <item>
      <title>Re: GraphicsLayer Spatial Reference</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/graphicslayer-spatial-reference/m-p/202889#M5034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Answering my own question, but here goes....&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;....I found a solution which fixed my specific issue.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The spatial reference of my graphic's geometry was null. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I fixed my code to set to mySpatialReference before adding to graphicLayer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This did NOT update the graphicLayer.SpatialReference. It is still null&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[INDENT][/INDENT]... I suspect this _could_ be because graphicLayer.IsInitialized = false. Perhaps if one called Initialize and waits for the response, the graphicLayer.SpatialReference will be non null... I did not try this.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;However, now when I send my map to the PrintTask, the featureSet's spatialReference is now set to mySpatialReference and I see points in the exported map.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So, the orig problem described in the first post is not solved, but the export problem I was seeing (which I thought was related) is solved.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Perhaps someone will find this information useful.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-Cory&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Feb 2013 19:16:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/graphicslayer-spatial-reference/m-p/202889#M5034</guid>
      <dc:creator>deleted-user-Ohz6rwd1kavx</dc:creator>
      <dc:date>2013-02-21T19:16:45Z</dc:date>
    </item>
    <item>
      <title>Re: GraphicsLayer Spatial Reference</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/graphicslayer-spatial-reference/m-p/202890#M5035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;So, the orig problem described in the first post is not solved, but the export problem I was seeing (which I thought was related) is solved. &lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;A graphicslayer has no spatial reference associated to it. The spatial reference is defined by graphic (and can be different by graphic).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2013 06:39:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/graphicslayer-spatial-reference/m-p/202890#M5035</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2013-02-22T06:39:14Z</dc:date>
    </item>
    <item>
      <title>Re: GraphicsLayer Spatial Reference</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/graphicslayer-spatial-reference/m-p/202891#M5036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If that is the case, then the GraphicsLayer definition should not include a SpatialReference property at all. I am encountering a similar problem to this where adding points - which their SR set correctly - to a GraphicLayer is hanging the application. The map is fully loaded with it's SR set and the layers initialized, yet the problem persists.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The workaround for my issue is to set the GraphicsLayer.SpatialReference via reflection (since it's private), and the issue is solved.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2015 12:34:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/graphicslayer-spatial-reference/m-p/202891#M5036</guid>
      <dc:creator>MarkHiscocks</dc:creator>
      <dc:date>2015-07-16T12:34:01Z</dc:date>
    </item>
    <item>
      <title>Re: GraphicsLayer Spatial Reference</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/graphicslayer-spatial-reference/m-p/202892#M5037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mark,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just to note ... the information in the following thread provided insights that may be helpful:&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.esri.com/thread/117206"&gt;https://community.esri.com/thread/117206&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Following that example, the fragment below shows a class derived from GraphicsLayer that overrides the OnInitializeGraphicsLayerRequestedAsync() method.&lt;/P&gt;&lt;P&gt;---------------------&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;public class MyGraphicsLayer : GraphicsLayer&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp; private SpatialReference _layerSpatialReference = null;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp; public MyGraphicsLayer(SpatialReference layerSpatialReference)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Capture the specified spatial reference so it is available&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // for use in the OnInitializeGraphicsLayerRequestedAsync() override.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; _layerSpatialReference = layerSpatialReference;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp; protected override Task&amp;lt;GraphicsLayerInitializationInfo&amp;gt; OnInitializeGraphicsLayerRequestedAsync()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return Task.FromResult(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; new GraphicsLayerInitializationInfo() { PreferredSpatialReference = _layerSpatialReference }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; );&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;-------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The fragment below demonstrates using the derived class (plus .InitializeAsynch) to assign the Spatial Reference:&lt;/P&gt;&lt;P&gt;--------------------&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;// Source of the graphic data is a FeatureSet loaded from the content of a *.json file.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;// The returned FeatureSet has its SpatialReference property set.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;// The intent is to assign that SpatialReference to the graphics layer prior to populating the layer.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;string jsonFileContent = (... previously read from a *.json file ...)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;FeatureSet featureSet = FeatureSet.FromJson(jsonFileContent);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;MyGraphicsLayer graphicsLayer = new MyGraphicsLayer(featureSet.SpatialReference);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;// Execution of the .InitializeAsync() call does transfer control into &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;// the OnInitializeGraphicsLayerRequestedAsync() override above.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;// The effect is to assign the spatial reference to the graphics layer.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;await graphicsLayer.InitializeAsync();&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;---------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; While the above approach seems to achieve the objective, it does require more code than one might expect (at least, in my opinion, it seems there could be a more straightforward technique for assigning a Spatial Reference to a graphics layer).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Scott&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Aug 2015 11:49:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/graphicslayer-spatial-reference/m-p/202892#M5037</guid>
      <dc:creator>ScottKutz</dc:creator>
      <dc:date>2015-08-07T11:49:04Z</dc:date>
    </item>
  </channel>
</rss>

