<?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: 4.x: Renderer: getSymbol() support dropped? in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/4-x-renderer-getsymbol-support-dropped/m-p/662539#M61806</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, you can still access the symbol as part of the renderer object. It will be something like layer.renderer.defaultSymbol or something along that line.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Sep 2019 02:49:13 GMT</pubDate>
    <dc:creator>VictorTey</dc:creator>
    <dc:date>2019-09-12T02:49:13Z</dc:date>
    <item>
      <title>4.x: Renderer: getSymbol() support dropped?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/4-x-renderer-getsymbol-support-dropped/m-p/662538#M61805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd like to know the reason behind dropping the support for the &lt;STRONG&gt;getSymbol()&amp;nbsp;&lt;/STRONG&gt;(&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/3/jsapi/renderer-amd.html#getsymbol" title="https://developers.arcgis.com/javascript/3/jsapi/renderer-amd.html#getsymbol"&gt;Renderer | API Reference | ArcGIS API for JavaScript 3.29&lt;/A&gt;&amp;nbsp;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It would be super helpful if we had the API that would retrieve me a symbol from any renderer class for the graphic/feature.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Scenario:&lt;/P&gt;&lt;P&gt;Identify/query task can get multiple features for different layers from&amp;nbsp;mapservice(s). I would like to visualize the identified features on the map&amp;nbsp;&lt;STRONG&gt;with their respective symbol&amp;nbsp;&lt;/STRONG&gt;from their own renderer.&amp;nbsp;&lt;/P&gt;&lt;P&gt;So ideally:&lt;/P&gt;&lt;P&gt;1) I would collect the rendering information&amp;nbsp;from all the relevant mapservice layers&lt;/P&gt;&lt;P&gt;2) Instantiate the renderer classes based on the returned json from 1)&lt;/P&gt;&lt;P&gt;3) Perform my identify/query task&lt;/P&gt;&lt;P&gt;4) Get the symbols from for the results in 3) by using the renderer from step 2) via&amp;nbsp;&lt;STRONG&gt;renderer.getSymbol(&lt;/STRONG&gt;feature&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;5) Provide the array of the features to the Popup via&amp;nbsp;&lt;STRONG&gt;.features&lt;/STRONG&gt; property&lt;/P&gt;&lt;P&gt;6)&amp;nbsp;Hook onto the&amp;nbsp;popup's&amp;nbsp;&lt;STRONG&gt;select event&amp;nbsp;&lt;/STRONG&gt;and display the feature that is properly symbolized. In addition, I could add another symbol that would mimic the&amp;nbsp;&lt;STRONG&gt;highlight&lt;/STRONG&gt; from the&amp;nbsp;mapview's&lt;STRONG&gt; highlightOptions&lt;/STRONG&gt; property&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Currently?&lt;/P&gt;&lt;P&gt;I identify the features, and then symbolize them with the same symbol (based on the geometry type of course).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Sep 2019 02:33:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/4-x-renderer-getsymbol-support-dropped/m-p/662538#M61805</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2019-09-12T02:33:21Z</dc:date>
    </item>
    <item>
      <title>Re: 4.x: Renderer: getSymbol() support dropped?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/4-x-renderer-getsymbol-support-dropped/m-p/662539#M61806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, you can still access the symbol as part of the renderer object. It will be something like layer.renderer.defaultSymbol or something along that line.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Sep 2019 02:49:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/4-x-renderer-getsymbol-support-dropped/m-p/662539#M61806</guid>
      <dc:creator>VictorTey</dc:creator>
      <dc:date>2019-09-12T02:49:13Z</dc:date>
    </item>
    <item>
      <title>Re: 4.x: Renderer: getSymbol() support dropped?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/4-x-renderer-getsymbol-support-dropped/m-p/662540#M61807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Victor, thanks for your response.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;defaultSymbol&lt;/STRONG&gt; is ok if it's single value renderer. but class-breaks or unique-value is a different story as I need a relevant symbol based on the attributes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm sure it's somewhere in the code already, why not just &lt;STRONG&gt;expose&lt;/STRONG&gt; it so we have it available? .. unless there is another method I'm not aware of, but I'm asking because it's missing in the doco, and also, release notes 4.0 specifically say&amp;nbsp;&lt;STRONG&gt;getSymbol()&amp;nbsp;&lt;/STRONG&gt;has been removed...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I get that you guys are pushing for feature layers to be used (and I'm all for it), but out-there in the real world there are still business requirements for the dynamic, cartographic-like mapservices that need to provide the query/identify functionality.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Sep 2019 02:53:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/4-x-renderer-getsymbol-support-dropped/m-p/662540#M61807</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2019-09-12T02:53:36Z</dc:date>
    </item>
    <item>
      <title>Re: 4.x: Renderer: getSymbol() support dropped?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/4-x-renderer-getsymbol-support-dropped/m-p/662541#M61808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are a couple of methods on the renderers that could help with this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UniqueValueRenderer&lt;BR /&gt;&lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-UniqueValueRenderer.html#getUniqueValueInfo" target="_blank"&gt;https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-UniqueValueRenderer.html#getUniqueValueInfo&lt;/A&gt;&lt;/P&gt;&lt;P&gt;ClassBreakRenderer&lt;BR /&gt;&lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-ClassBreaksRenderer.html#getClassBreakInfo" rel="nofollow noopener noreferrer" target="_blank"&gt;https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-ClassBreaksRenderer.html#getClassBreakInfo&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Each one will return the symbol along with some extra information related to the renderer like the values and label.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use them like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;view&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;on&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"click"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;event&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
  params&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;geometry &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; event&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mapPoint&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
  params&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mapExtent &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; view&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;extent&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
  params&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;returnGeometry &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;true&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

  &lt;SPAN class="comment token"&gt;// pick the currently displayed sublayer&lt;/SPAN&gt;
  &lt;SPAN class="keyword token"&gt;const&lt;/SPAN&gt; index &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;Number&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;
    selectElement&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;options&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;selectElement&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;selectedIndex&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;value
  &lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
  &lt;SPAN class="keyword token"&gt;const&lt;/SPAN&gt; subLayer &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; layer&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;findSublayerById&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;index&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

  identifyTask&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;execute&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;params&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;then&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;response&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
    response&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;results&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;forEach&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;result&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
      &lt;SPAN class="keyword token"&gt;const&lt;/SPAN&gt; graphic &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; result&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;clone&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
      subLayer&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;renderer
        &lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;getClassBreakInfo&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;result&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;feature&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
        &lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;then&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;info&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
          graphic&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;symbol &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; info&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;symbol&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;clone&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
          view&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;graphics&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;add&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;graphic&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
        &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
        &lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;catch&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;error&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; console&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;warn&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;error&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
    &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
  &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That should get you similar behavior to what you are looking for with getSymbol&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is a live demo&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://codepen.io/odoe/pen/rNBKVve?editors=1000" title="https://codepen.io/odoe/pen/rNBKVve?editors=1000" rel="nofollow noopener noreferrer" target="_blank"&gt;https://codepen.io/odoe/pen/rNBKVve?editors=1000&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 04:00:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/4-x-renderer-getsymbol-support-dropped/m-p/662541#M61808</guid>
      <dc:creator>ReneRubalcava</dc:creator>
      <dc:date>2021-12-12T04:00:52Z</dc:date>
    </item>
    <item>
      <title>Re: 4.x: Renderer: getSymbol() support dropped?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/4-x-renderer-getsymbol-support-dropped/m-p/662542#M61809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rene, this is helpful, but not completely. You only have the renderer available for the subLayer because you specify it so in the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now imagine you have a map service with around 80 sublayers (don't ask me why it's that many, not my domain). I cannot possibly&amp;nbsp;hard-code that many renderers (and that wouldn't be a good solution either). If I try to implement&amp;nbsp;&lt;STRONG&gt;your code above&lt;/STRONG&gt;, the&amp;nbsp;&lt;STRONG&gt;sublayer.renderer&lt;/STRONG&gt; is &lt;STRONG&gt;null&lt;/STRONG&gt;, I thought the&amp;nbsp;&lt;STRONG&gt;.findSubLayerById()&lt;/STRONG&gt; would also pull the render information automatically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I will have to pretty much end up with some custom functionality for getting the renderer for the sublayer &lt;STRONG&gt;from the server&lt;/STRONG&gt; and store it in memory for future identify operations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks all for your help and for the codepen. I will try to update it to prove the 'zoom to layers in popup' doesnt work if the results are from the identify so you guys can have a look.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Sep 2019 23:57:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/4-x-renderer-getsymbol-support-dropped/m-p/662542#M61809</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2019-09-12T23:57:33Z</dc:date>
    </item>
  </channel>
</rss>

