<?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: Making ArcGISDynamicMapServiceLayer appear above FeatureLayer on a map in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/making-arcgisdynamicmapservicelayer-appear-above/m-p/177420#M16450</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks. The reason for having a feature layer was to use the infoTemplate property, which is not available in a dynamic layer. I may have to drop this idea.&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 Jun 2014 07:52:55 GMT</pubDate>
    <dc:creator>DanielNwankwo</dc:creator>
    <dc:date>2014-06-10T07:52:55Z</dc:date>
    <item>
      <title>Making ArcGISDynamicMapServiceLayer appear above FeatureLayer on a map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/making-arcgisdynamicmapservicelayer-appear-above/m-p/177417#M16447</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am using the ArcGISDynamicMapServiceLayer to display some labels and FeatureLayer objects to display shapes.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Both are added to the same map object but the ArcGISDynamicMapServiceLayer graphic is always beneath the FeatureLayer graphic.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have tried map.reorder() but that does not work. I also tried adding one layer before the other but to no avail. I can set the opacity of the FeatureLayer but I don't really want to do that as it makes it difficult to see.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What am I missing?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jun 2014 16:02:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/making-arcgisdynamicmapservicelayer-appear-above/m-p/177417#M16447</guid>
      <dc:creator>DanielNwankwo</dc:creator>
      <dc:date>2014-06-09T16:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: Making ArcGISDynamicMapServiceLayer appear above FeatureLayer on a map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/making-arcgisdynamicmapservicelayer-appear-above/m-p/177418#M16448</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;A FeatureLayer will always be placed on top of a dynamic layer. Refer to the &lt;/SPAN&gt;&lt;A href="https://developers.arcgis.com/javascript/jsapi/featurelayer-amd.html"&gt;documentation&lt;/A&gt;&lt;SPAN&gt;, where it states that the FeatureLayer&amp;nbsp; inherits from the GraphicLayer. Then look at the GraphicLayer &lt;/SPAN&gt;&lt;A href="https://developers.arcgis.com/javascript/jsapi/graphicslayer-amd.html"&gt;page&lt;/A&gt;&lt;SPAN&gt;, where it states&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&amp;nbsp; Also, all graphics layers are always on top of &lt;A href="https://developers.arcgis.com/javascript/jsapi/tiledmapservicelayer-amd.html"&gt;TiledMapServiceLayers&lt;/A&gt; and &lt;A href="https://developers.arcgis.com/javascript/jsapi/dynamicmapservicelayer-amd.html"&gt;DynamicMapServiceLayers&lt;/A&gt;.&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jun 2014 16:30:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/making-arcgisdynamicmapservicelayer-appear-above/m-p/177418#M16448</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2014-06-09T16:30:02Z</dc:date>
    </item>
    <item>
      <title>Re: Making ArcGISDynamicMapServiceLayer appear above FeatureLayer on a map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/making-arcgisdynamicmapservicelayer-appear-above/m-p/177419#M16449</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;you have two options.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Render your dynamiclayer as a Feature Layer&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Render your featurelayer as a Dynamic Layer&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;With one of each, you can not control the order.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jun 2014 17:02:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/making-arcgisdynamicmapservicelayer-appear-above/m-p/177419#M16449</guid>
      <dc:creator>JeffPace</dc:creator>
      <dc:date>2014-06-09T17:02:24Z</dc:date>
    </item>
    <item>
      <title>Re: Making ArcGISDynamicMapServiceLayer appear above FeatureLayer on a map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/making-arcgisdynamicmapservicelayer-appear-above/m-p/177420#M16450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks. The reason for having a feature layer was to use the infoTemplate property, which is not available in a dynamic layer. I may have to drop this idea.&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 Jun 2014 07:52:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/making-arcgisdynamicmapservicelayer-appear-above/m-p/177420#M16450</guid>
      <dc:creator>DanielNwankwo</dc:creator>
      <dc:date>2014-06-10T07:52:55Z</dc:date>
    </item>
  </channel>
</rss>

