<?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 ArcGISDynamicMapServiceLayer - Highlighting a selected polygon in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcgisdynamicmapservicelayer-highlighting-a/m-p/513535#M47958</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hey Guys,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am just getting started with the API. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have a ArcGISDynamicMapServiceLayer of postcode boundaries that I have successfully added to a map. I now want to be able to highlight (set the color) a polygon when it is clicked on. Is there a simple way of doing this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your help!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Sep 2011 00:15:52 GMT</pubDate>
    <dc:creator>MattBrunsdon</dc:creator>
    <dc:date>2011-09-02T00:15:52Z</dc:date>
    <item>
      <title>ArcGISDynamicMapServiceLayer - Highlighting a selected polygon</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcgisdynamicmapservicelayer-highlighting-a/m-p/513535#M47958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hey Guys,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am just getting started with the API. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have a ArcGISDynamicMapServiceLayer of postcode boundaries that I have successfully added to a map. I now want to be able to highlight (set the color) a polygon when it is clicked on. Is there a simple way of doing this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your help!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Sep 2011 00:15:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcgisdynamicmapservicelayer-highlighting-a/m-p/513535#M47958</guid>
      <dc:creator>MattBrunsdon</dc:creator>
      <dc:date>2011-09-02T00:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGISDynamicMapServiceLayer - Highlighting a selected polygon</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcgisdynamicmapservicelayer-highlighting-a/m-p/513536#M47959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I have a ArcGISDynamicMapServiceLayer ...I now want to be able to highlight (set the color) a polygon when it is clicked on.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi Matthew,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can set a queryTask to run when you click on the map. This will return a result, which you can display as a graphic (code snippet below):&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.connect(map, "onClick", executeQueryTask);

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; function executeQueryTask(evt) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.geometry = evt.mapPoint;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; queryTask.execute(query, showResults);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; function showResults(featureSet) {

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.forEach(featureSet.features,function(feature){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var graphic = feature;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; graphic.setSymbol(symbol);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map.graphics.add(graphic);
&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; }
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;See the sample &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/javascript/arcgis/help/jssamples/query_clickinfowindow.html" rel="nofollow noopener noreferrer" target="_blank"&gt;here&lt;/A&gt;&lt;SPAN&gt; for a working version of this.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Good luck,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Steve&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:27:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcgisdynamicmapservicelayer-highlighting-a/m-p/513536#M47959</guid>
      <dc:creator>StephenLead</dc:creator>
      <dc:date>2021-12-11T22:27:34Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGISDynamicMapServiceLayer - Highlighting a selected polygon</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcgisdynamicmapservicelayer-highlighting-a/m-p/513537#M47960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/javascript/arcgis/help/jssamples/query_showinfowindow.html"&gt;show info window immediately sample&lt;/A&gt;&lt;SPAN&gt; shows this.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Sep 2011 02:08:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcgisdynamicmapservicelayer-highlighting-a/m-p/513537#M47960</guid>
      <dc:creator>derekswingley1</dc:creator>
      <dc:date>2011-09-02T02:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGISDynamicMapServiceLayer - Highlighting a selected polygon</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcgisdynamicmapservicelayer-highlighting-a/m-p/513538#M47961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have tried to follow the example very carefully, but I've had no luck.&amp;nbsp; Is there a kind soul who could please look at my attempt?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;At this point I have no idea why it doesn't work.&amp;nbsp; My only thought is that the click might be focused more on navigating around the map rather than instigating the selection of a parcel.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Go to &lt;/SPAN&gt;&lt;A href="http://gis.chcity.org/test/parcel_highlight.html"&gt;http://gis.chcity.org/test/parcel_highlight.html&lt;/A&gt;&lt;SPAN&gt; and view the source code for the page.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried to do all the steps necessary in the init function, the executeQueryTask function, and the showResults function.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2012 00:07:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcgisdynamicmapservicelayer-highlighting-a/m-p/513538#M47961</guid>
      <dc:creator>N_Young</dc:creator>
      <dc:date>2012-02-03T00:07:41Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGISDynamicMapServiceLayer - Highlighting a selected polygon</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcgisdynamicmapservicelayer-highlighting-a/m-p/513539#M47962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I think you were missing two crucial steps.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1. You need to specify which fields the query should return:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
query = new esri.tasks.Query();
query.returnGeometry = true;
&lt;SPAN style="color:#ff0000;"&gt;query.outFields = ["*"];&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2. The query needs to run against an individual layer (the last bit of the URL):&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
queryTask = new esri.tasks.QueryTask("http://gis.chcity.org/CHwebMaps/rest/services/CityData/Parcels_SD/MapServer&lt;SPAN style="color:#ff0000;"&gt;/0&lt;/SPAN&gt;");
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If I make these changes, the parcel is highlighted in yellow after clicking.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Steve&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:27:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcgisdynamicmapservicelayer-highlighting-a/m-p/513539#M47962</guid>
      <dc:creator>StephenLead</dc:creator>
      <dc:date>2021-12-11T22:27:37Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGISDynamicMapServiceLayer - Highlighting a selected polygon</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcgisdynamicmapservicelayer-highlighting-a/m-p/513540#M47963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Wow, thanks!&amp;nbsp; I am very pleased.&amp;nbsp; I thought I didn't have to deal with outFields at all because I didn't want info windows.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That's also interesting about changing the last bit of the URL...especially because if I add the /0 at the place where I create and add my dynamic map service layer, my parcels layer does not load.&amp;nbsp; So right now I only have the /0 in the queryTask as you suggested, and that works fine.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm going to try something a bit more complicated so I may find myself with more questions - thank you for getting me started.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2012 18:37:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcgisdynamicmapservicelayer-highlighting-a/m-p/513540#M47963</guid>
      <dc:creator>N_Young</dc:creator>
      <dc:date>2012-02-03T18:37:03Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGISDynamicMapServiceLayer - Highlighting a selected polygon</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcgisdynamicmapservicelayer-highlighting-a/m-p/513541#M47964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello again.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm now trying to add the ability to highlight a clicked parcel to an existing javascript template (&lt;/SPAN&gt;&lt;A href="http://www.arcgis.com/home/item.html?id=bf3e7823a8714a6ea7625d994f57aab5"&gt;the chrome identify template&lt;/A&gt;&lt;SPAN&gt;).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My two main difficulties:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1.&amp;nbsp; Handling what functions happen on a click of the map.&amp;nbsp; The template calls an identify location function when the map is clicked.&amp;nbsp; The code I want to add calls the executeQueryTask function when the map is clicked.&amp;nbsp; I have tried various things, but so far the identify functionality keeps working but showing selected parcels does not.&amp;nbsp; How do I go about making sure BOTH things happen on a click of the map?&amp;nbsp; Both use evt.mapPoint so it seems like it might just require small changes.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2.&amp;nbsp; When using the template, I get mixed up about what javascript I should add in the layout.js file and what should be added to index.html.&amp;nbsp; For example, do I initialize the event listener, query task, query filter, and symbol properties in the init function of index.html, or in the initMap function of layout.js?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have attached index.html and layout.js without any selecting-parcel code, because none of that quite worked for me.&amp;nbsp; Index.html includes some javascript for a search bar I added.&amp;nbsp; Layout.js has various things removed so the file would attach to this message.&amp;nbsp; &lt;/SPAN&gt;&lt;A href="http://gis.chcity.org/test/cityinformation/"&gt;Here is the map&lt;/A&gt;&lt;SPAN&gt; I am testing with the chrome identify template.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any help is appreciated.&amp;nbsp; Thank you.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2012 20:56:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcgisdynamicmapservicelayer-highlighting-a/m-p/513541#M47964</guid>
      <dc:creator>N_Young</dc:creator>
      <dc:date>2012-02-03T20:56:22Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGISDynamicMapServiceLayer - Highlighting a selected polygon</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcgisdynamicmapservicelayer-highlighting-a/m-p/513542#M47965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;if I add the /0 at the place where I create and add my dynamic map service layer, my parcels layer does not load.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is because when you specify a dynamic layer, you omit the layer identifier from the URL, but when you specify a feature layer or query, you need to specify the layer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;How do I go about making sure BOTH things happen on a click of the map?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Search the file layout.js for the section:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
dojo.connect(map, "onClick", function(evt) {
&amp;nbsp;&amp;nbsp;&amp;nbsp; identifyLocation(evt.mapPoint, operationalLayers);
});
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is where the code specifies that the Identify should run when you click on the map. If you add your code here, it will also run when you click on the map.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;BR /&gt;I get mixed up about what javascript I should add in the layout.js file and what should be added to index.html.&amp;nbsp; For example, do I initialize the event listener, query task, query filter, and symbol properties in the init function of index.html, or in the initMap function of layout.js?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm not an expert on this, but my two cents is that either way will work, so there's no one "correct" answer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It's generally considered more robust to keep your application modular, so that (for example) the .HTML file contains the page elements (the map, scalebar, header, etc) the styling is stored in a separate .CSS file, and the logic is contained in .js files. As long as you reference the JS files from within the HTML file, it will work.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Good luck,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Steve&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:27:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcgisdynamicmapservicelayer-highlighting-a/m-p/513542#M47965</guid>
      <dc:creator>StephenLead</dc:creator>
      <dc:date>2021-12-11T22:27:39Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGISDynamicMapServiceLayer - Highlighting a selected polygon</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcgisdynamicmapservicelayer-highlighting-a/m-p/513543#M47966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thank you once more.&amp;nbsp; You were exactly right.&amp;nbsp; To run two functions on a click, all I had to do was add executeQueryTask as a second function to run in the onClick section (then include the code for that function later on, of course).&amp;nbsp; Earlier I had tried adding a second set of onClick instructions.&amp;nbsp; I also tried to call the second function somewhere within the code for the first one.&amp;nbsp; Neither worked for me.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Correct Code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.connect(map, "onClick", function(evt) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; identifyLocation(evt.mapPoint, operationalLayers);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //1st function
&amp;nbsp;&amp;nbsp; executeQueryTask(evt);&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; //2nd function
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also, the things that need to be initialized for highlighting parcels just needed to be added to the init() or initMap() function.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:27:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcgisdynamicmapservicelayer-highlighting-a/m-p/513543#M47966</guid>
      <dc:creator>N_Young</dc:creator>
      <dc:date>2021-12-11T22:27:42Z</dc:date>
    </item>
  </channel>
</rss>

