<?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: How to set symbol levels/ordering with renderers? in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-symbol-levels-ordering-with-renderers/m-p/284708#M26242</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well it applies all the symbology all at the same time, but they have the ability to just change one layer's breakpoints and leave the rest the unchanged.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Jan 2017 16:40:06 GMT</pubDate>
    <dc:creator>BryanChastain</dc:creator>
    <dc:date>2017-01-04T16:40:06Z</dc:date>
    <item>
      <title>How to set symbol levels/ordering with renderers?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-symbol-levels-ordering-with-renderers/m-p/284702#M26236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When I'm using a esri javascript renderer on a dynamic map service (e.g. ClassBreaksRenderer or UniqueValueRenderer), is there any way to set the symbol levels (i.e. drawing order) for each break/value?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; renderer &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;new&lt;/SPAN&gt; &lt;SPAN class="token class-name"&gt;UniqueValueRenderer&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;
renderer&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;addValue&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; none&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&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;addValue&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;2&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; low&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&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;addValue&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;3&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; medium&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&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;addValue&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;4&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; high&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Where, "none", "low", "medium", and "high" are SimpleMarkerSymbols, how can I ensure that the high (4) points always are on top of the medium (3), low (2) and none (1) points?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I publish a service with the symbol levels defined in ArcMap, it obeys the symbol levels, but I want to be able to change the renderer dynamically and still obey the symbol levels.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 13:46:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-symbol-levels-ordering-with-renderers/m-p/284702#M26236</guid>
      <dc:creator>BryanChastain</dc:creator>
      <dc:date>2021-12-11T13:46:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to set symbol levels/ordering with renderers?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-symbol-levels-ordering-with-renderers/m-p/284703#M26237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bryan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;I do not know of any support for symbol levels in the JS API renderers. ArcGIS Server has this ability because the image for the layer is rendered on the server using ArcObjects that has this ability. One workaround I can think of is to add a layer for each level (with a definition query applied) with the symbology you want and add each layer to the map in the priority order you are wishing to see.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jan 2017 14:07:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-symbol-levels-ordering-with-renderers/m-p/284703#M26237</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-01-04T14:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to set symbol levels/ordering with renderers?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-symbol-levels-ordering-with-renderers/m-p/284704#M26238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah, I thought about that too, but that would get real messy. Right now I've already got 28 layers on the map service, and that would mean splitting it into 112+ layers. The dataset is large and is on the slow side to render as it is, so I'm thinking this would probably slow it down even more.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you think it might be accomplished with SOEs/SOIs on ArcGIS Server?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jan 2017 16:10:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-symbol-levels-ordering-with-renderers/m-p/284704#M26238</guid>
      <dc:creator>BryanChastain</dc:creator>
      <dc:date>2017-01-04T16:10:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to set symbol levels/ordering with renderers?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-symbol-levels-ordering-with-renderers/m-p/284705#M26239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Very probable. I don't have any experience with that though. Why would you need to split all your layers?.. are you not just concerned about the drawing order of this one that you want to symbolize in code on the client? Can't you let ArcGIS Server handle the others.&lt;/SPAN&gt;&lt;P class=""&gt;&lt;BR /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jan 2017 16:15:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-symbol-levels-ordering-with-renderers/m-p/284705#M26239</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-01-04T16:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to set symbol levels/ordering with renderers?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-symbol-levels-ordering-with-renderers/m-p/284706#M26240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah yeah, it's complicated. The 28 existing sublayers are so the user can set custom breakpoints for the renderer for 28 different region/type combinations. For example, Region 1, Type A, set breakpoints to [0, 1, 2, 3]; Region 1, Type B, set breakpoints to [2, 3, 4, 5]; Region 2, Type A, set breakpoints to [2, 3, 6, 8]; etc. Each region/type combination has it's own dynamically-set set of breakpoints, but in the overall view of the map, it's the same 4 symbols everywhere.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jan 2017 16:32:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-symbol-levels-ordering-with-renderers/m-p/284706#M26240</guid>
      <dc:creator>BryanChastain</dc:creator>
      <dc:date>2017-01-04T16:32:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to set symbol levels/ordering with renderers?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-symbol-levels-ordering-with-renderers/m-p/284707#M26241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bryan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;So are they symbolizing all 28 layer at the same time or just one at a time?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jan 2017 16:35:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-symbol-levels-ordering-with-renderers/m-p/284707#M26241</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-01-04T16:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to set symbol levels/ordering with renderers?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-symbol-levels-ordering-with-renderers/m-p/284708#M26242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well it applies all the symbology all at the same time, but they have the ability to just change one layer's breakpoints and leave the rest the unchanged.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jan 2017 16:40:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-symbol-levels-ordering-with-renderers/m-p/284708#M26242</guid>
      <dc:creator>BryanChastain</dc:creator>
      <dc:date>2017-01-04T16:40:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to set symbol levels/ordering with renderers?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-symbol-levels-ordering-with-renderers/m-p/284709#M26243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, &amp;nbsp;I thought that you might be able to add the additional layers at runtime for the specific layer that was being configured but that does not seem like an option. Good luck on this complicated app. I hope the LOE is worth what you are going get out of this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jan 2017 16:51:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-symbol-levels-ordering-with-renderers/m-p/284709#M26243</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-01-04T16:51:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to set symbol levels/ordering with renderers?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-symbol-levels-ordering-with-renderers/m-p/284710#M26244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Heh, thanks - the customer gets what they want! The rest of it is working - was just wondering about the symbol ordering.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jan 2017 16:55:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-symbol-levels-ordering-with-renderers/m-p/284710#M26244</guid>
      <dc:creator>BryanChastain</dc:creator>
      <dc:date>2017-01-04T16:55:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to set symbol levels/ordering with renderers?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-symbol-levels-ordering-with-renderers/m-p/284711#M26245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cool. I should be using geonet. Seems helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jan 2017 02:02:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-symbol-levels-ordering-with-renderers/m-p/284711#M26245</guid>
      <dc:creator>AaronEvans3</dc:creator>
      <dc:date>2017-01-27T02:02:01Z</dc:date>
    </item>
  </channel>
</rss>

