<?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: Renderer, Symbol, GeoRssLayer and Binding question in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/renderer-symbol-georsslayer-and-binding-question/m-p/733009#M18765</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;thanks for the clarification.. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The layer is of type GeoRssLayer which inherits from GraphicsLayer and not FeatureLayer... therefore i believe it is not time-aware?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Which is also the cause of the SymbolAger in TemporalRenderer not working?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If it is, how can i make them to work?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;regards&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Aug 2010 03:12:38 GMT</pubDate>
    <dc:creator>linusang</dc:creator>
    <dc:date>2010-08-11T03:12:38Z</dc:date>
    <item>
      <title>Renderer, Symbol, GeoRssLayer and Binding question</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/renderer-symbol-georsslayer-and-binding-question/m-p/733007#M18763</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'm using a TemporalRenderer for the new GeoRssLayer type, I added a Magnitude Attribute to each Graphic in the GraphicsCollection. Each graphic's size is based upon the Magnitude value using the ClassBreaksRenderer in the TemporalRender... Like this xaml below...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;
&amp;lt;esri:TemporalRenderer x:Key="EarthquakeRenderer"&amp;gt;

 &amp;lt;!--ObservationRenderer--&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:TemporalRenderer.ObservationRenderer&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:ClassBreaksRenderer Attribute="Magnitude" &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:ClassBreakInfo MinimumValue="0" MaximumValue="3.9" Symbol="{StaticResource MySmallMarkerSymbol}" /&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:ClassBreakInfo MinimumValue="4" MaximumValue="6.9" Symbol="{StaticResource MyMediumMarkerSymbol}" /&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:ClassBreakInfo MinimumValue="7" MaximumValue="10" Symbol="{StaticResource MyLargeMarkerSymbol}" /&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:ClassBreaksRenderer&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:TemporalRenderer.ObservationRenderer&amp;gt;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!--SymbolAger--&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:TemporalRenderer.SymbolAger&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:RampInterpolator&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;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:RampInterpolator.ColorRange&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;nbsp;&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;nbsp;&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:ColorRange From="Yellow" To="Red" /&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;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:RampInterpolator.ColorRange&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:RampInterpolator&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:TemporalRenderer.SymbolAger&amp;gt;
&amp;lt;/esri:TemporalRenderer&amp;gt;
&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Questions: &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1) I would like the user to be able to change the size of the Symbols using a slider. How do i bind the Slider's value to the Symbols?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2) The SymbolAger does not work... how can i get this to work?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Aug 2010 10:52:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/renderer-symbol-georsslayer-and-binding-question/m-p/733007#M18763</guid>
      <dc:creator>linusang</dc:creator>
      <dc:date>2010-08-10T10:52:35Z</dc:date>
    </item>
    <item>
      <title>Re: Renderer, Symbol, GeoRssLayer and Binding question</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/renderer-symbol-georsslayer-and-binding-question/m-p/733008#M18764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The RampInterpolator also includes SizeRange, which has From and To values. You can add this with your ColorRange if you wanted to interpolate symbols in both size and color. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If your layer is Time-Aware, you can use the TimeSlider and bind its value to the layer's TimeExtent, like in this example:&lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#TimeSliderFeatureLayer"&gt;http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#TimeSliderFeatureLayer&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jennifer&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Aug 2010 13:28:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/renderer-symbol-georsslayer-and-binding-question/m-p/733008#M18764</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2010-08-10T13:28:40Z</dc:date>
    </item>
    <item>
      <title>Re: Renderer, Symbol, GeoRssLayer and Binding question</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/renderer-symbol-georsslayer-and-binding-question/m-p/733009#M18765</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;thanks for the clarification.. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The layer is of type GeoRssLayer which inherits from GraphicsLayer and not FeatureLayer... therefore i believe it is not time-aware?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Which is also the cause of the SymbolAger in TemporalRenderer not working?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If it is, how can i make them to work?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;regards&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Aug 2010 03:12:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/renderer-symbol-georsslayer-and-binding-question/m-p/733009#M18765</guid>
      <dc:creator>linusang</dc:creator>
      <dc:date>2010-08-11T03:12:38Z</dc:date>
    </item>
    <item>
      <title>Re: Renderer, Symbol, GeoRssLayer and Binding question</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/renderer-symbol-georsslayer-and-binding-question/m-p/733010#M18766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;GraphicsLayer is TimeAware layer. For GeoRssLayer, it's PublishDate will be used as the TimeExtent. I'm not sure if we are using the same layer. I tried to view graphic attributes from this sample &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#GeoRssSimple"&gt;http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#GeoRssSimple&lt;/A&gt;&lt;SPAN&gt; and found that all graphics have the same PublishDate. This is the reason why the Temporal Renderer did not look like it worked because all of them have the same date.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jennifer&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Aug 2010 04:38:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/renderer-symbol-georsslayer-and-binding-question/m-p/733010#M18766</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2010-08-11T04:38:06Z</dc:date>
    </item>
  </channel>
</rss>

