<?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 change feature layer style using its parameters in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79104#M7225</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Sabbiu,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Try this code. Why are you using MapImageLayer instead of FeatureLayer?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;permitsLyr.setRenderer(new SimpleRenderer(new SimpleLineSymbol(&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&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; SimpleLineSymbol.STYLE_SOLID,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&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; new Color([&lt;SPAN style="color: #222222; font-size: small;"&gt;(0,128,0, 1&lt;/SPAN&gt;]),&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&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;3)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&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; )&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&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; );&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 20 Nov 2016 00:03:13 GMT</pubDate>
    <dc:creator>SarojThapa1</dc:creator>
    <dc:date>2016-11-20T00:03:13Z</dc:date>
    <item>
      <title>How to change feature layer style using its parameters</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79103#M7224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is the code that I have written till now.&lt;/P&gt;&lt;P&gt;require([&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;"esri/Map",&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;"esri/views/MapView",&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;"esri/layers/MapImageLayer",&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;"esri/renderers/SimpleRenderer",&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;"esri/symbols/SimpleFillSymbol",&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;"dojo/domReady!"&lt;BR /&gt; ],&lt;BR /&gt; function(&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;Map, MapView, MapImageLayer, SimpleRenderer, SimpleFillSymbol&lt;BR /&gt; ) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;var permitsLyr = new MapImageLayer({&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;url: "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=http%3A%2F%2Fapps.geoportal.icimod.org%2FArcGIS%2Frest%2Fservices%2FNepal%2FDistrict%2FMapServer" rel="nofollow" target="_blank"&gt;http://apps.geoportal.icimod.org/ArcGIS/rest/services/Nepal/District/MapServer&lt;/A&gt;&lt;SPAN&gt;",&lt;/SPAN&gt;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;sublayers: [&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;{&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;id: 1,&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;visible: true,&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;},&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;{&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;id: 0,&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;visible: true,&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;],&lt;/P&gt;&lt;P&gt;});&lt;/P&gt;&lt;P&gt;/*****************************************************************&lt;BR /&gt; * Add the layer to a map&lt;BR /&gt; *****************************************************************/&lt;BR /&gt; var map = new Map({&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;// basemap: "dark-gray",&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;layers: [permitsLyr]&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;var view = new MapView({&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;container: "viewDiv",&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;map: map&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;/*****************************************************************&lt;BR /&gt; * Animate to the layer's full extent when the layer loads.&lt;BR /&gt; *****************************************************************/&lt;BR /&gt; permitsLyr.then(function() {&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;view.goTo(permitsLyr.fullExtent);&lt;BR /&gt; });&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, I would like to change default renderer given in the&amp;nbsp;&lt;A class="link-titled" href="http://apps.geoportal.icimod.org/ArcGIS/rest/services/Nepal/District/MapServer/0" title="http://apps.geoportal.icimod.org/ArcGIS/rest/services/Nepal/District/MapServer/0"&gt;District - Nepal/District&lt;/A&gt;&amp;nbsp;&amp;nbsp;as&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;Drawing Info:&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;Renderer:&lt;/UL&gt;&lt;/UL&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL&gt;Simple Renderer:&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL&gt;Symbol:&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;EM&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;Simple Fill Symbol:&lt;/EM&gt;&lt;/P&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL&gt;&lt;UL&gt;Style: esriSFSSolid, Color: [Undefined]&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL&gt;&lt;UL&gt;Outline:&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;EM&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;Simple Line Symbol:&lt;/EM&gt;&lt;/P&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;Style: esriSLSSolid, Color: [78, 78, 78, 255], Width: 1&lt;/UL&gt;&lt;/UL&gt;Label:&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL&gt;Description:&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL&gt;&lt;/UL&gt;Transparency: 0&lt;/UL&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;Labeling Info: N/A&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I change the default color and style for it? Also, using its attribute "DIST_CODE", I also want to apply different color for different polygons.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new to this field. So, help me out.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 19 Nov 2016 18:55:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79103#M7224</guid>
      <dc:creator>SabbiuShah</dc:creator>
      <dc:date>2016-11-19T18:55:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to change feature layer style using its parameters</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79104#M7225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Sabbiu,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Try this code. Why are you using MapImageLayer instead of FeatureLayer?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;permitsLyr.setRenderer(new SimpleRenderer(new SimpleLineSymbol(&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&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; SimpleLineSymbol.STYLE_SOLID,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&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; new Color([&lt;SPAN style="color: #222222; font-size: small;"&gt;(0,128,0, 1&lt;/SPAN&gt;]),&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&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;3)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&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; )&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&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; );&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Nov 2016 00:03:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79104#M7225</guid>
      <dc:creator>SarojThapa1</dc:creator>
      <dc:date>2016-11-20T00:03:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to change feature layer style using its parameters</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79105#M7226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually, I am new to this field. I found few examples on MapImageLayer. Hence, I went with that.&lt;/P&gt;&lt;P&gt;Also, I am trying to make a "Density Map Chart" with my own data, but taking the region information from above url. Will you please guide me to the right direction?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Nov 2016 02:26:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79105#M7226</guid>
      <dc:creator>SabbiuShah</dc:creator>
      <dc:date>2016-11-20T02:26:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to change feature layer style using its parameters</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79106#M7227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try the above codes in your MapImageLayer and see if the colors change or not.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Nov 2016 03:01:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79106#M7227</guid>
      <dc:creator>SarojThapa1</dc:creator>
      <dc:date>2016-11-20T03:01:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to change feature layer style using its parameters</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79107#M7228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it says, setRenderer is not defined..&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's my code..&amp;nbsp;&lt;A class="link-titled" href="https://github.com/sabbiu/nepal_map" title="https://github.com/sabbiu/nepal_map"&gt;GitHub - sabbiu/nepal_map&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Nov 2016 09:26:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79107#M7228</guid>
      <dc:creator>SabbiuShah</dc:creator>
      <dc:date>2016-11-20T09:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to change feature layer style using its parameters</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79108#M7229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With few modifications, I am now able to add color. Thanks &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://github.com/sabbiu/nepal_map" title="https://github.com/sabbiu/nepal_map"&gt;GitHub - sabbiu/nepal_map&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now I have a question that, "Using different attribute values from the mentioned MapServer, how do I put different color for different regions?"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Nov 2016 16:16:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79108#M7229</guid>
      <dc:creator>SabbiuShah</dc:creator>
      <dc:date>2016-11-20T16:16:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to change feature layer style using its parameters</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79109#M7230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use UniqueValueRenderer in a very similar way. This sample should help you.&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/3/samples/renderer_unique_value/" title="https://developers.arcgis.com/javascript/3/samples/renderer_unique_value/"&gt;Unique Value Renderer&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Nov 2016 18:12:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79109#M7230</guid>
      <dc:creator>SarojThapa1</dc:creator>
      <dc:date>2016-11-20T18:12:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to change feature layer style using its parameters</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79110#M7231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks! I'll look into it. Now, I would like to know about, "How can I tweak labeling information?"&lt;/P&gt;&lt;P&gt;In the mapserver, it is given as,&lt;/P&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;Labeling Info:&lt;/UL&gt;&lt;/UL&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL&gt;Label Placement: esriServerPolygonPlacementAlwaysHorizontal&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL&gt;Label Expression: [DIST_NAME]&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL&gt;Use Coded Values: True&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL&gt;Symbol:&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;EM&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;Simple Text Symbol:&lt;/EM&gt;&lt;/P&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL&gt;&lt;UL&gt;Type: esriTS&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL&gt;&lt;UL&gt;Color:0, 0, 0, 255&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL&gt;&lt;UL&gt;Background Color: null&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL&gt;&lt;UL&gt;Border Line Color: null&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL&gt;&lt;UL&gt;Vertical Alignment: bottom&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL&gt;&lt;UL&gt;Horizontal Alignment: center&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL&gt;&lt;UL&gt;Right To Left: False&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL&gt;&lt;UL&gt;Angle: 0&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL&gt;&lt;UL&gt;XOffset: 0&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL&gt;&lt;UL&gt;YOffset: 0&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL&gt;&lt;UL&gt;Font Family: Arial&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL&gt;&lt;UL&gt;Font Size: 8&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL&gt;&lt;UL&gt;Font Style: normal&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL&gt;&lt;UL&gt;Font Weight: bold&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL&gt;&lt;UL&gt;Font Decoration: none&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL&gt;&lt;UL&gt;&lt;/UL&gt;Min. Scale: 0&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;UL style="color: #000000; background-color: #ffffff; font-size: 12.8px;"&gt;&lt;UL&gt;Max. Scale: 0&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;For now I'm not even able to show the labels.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried this. But, it didn't work.&lt;/P&gt;&lt;P&gt;var featureLayer = new FeatureLayer({&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;url: "&lt;A class="jivelink11" href="http://apps.geoportal.icimod.org/ArcGIS/rest/services/Nepal/District/MapServer" title="http://apps.geoportal.icimod.org/ArcGIS/rest/services/Nepal/District/MapServer"&gt;http://apps.geoportal.icimod.org/ArcGIS/rest/services/Nepal/District/MapServer&lt;/A&gt;",&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;renderer: new SimpleRenderer({&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;symbol: new SimpleFillSymbol({&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;style: SimpleFillSymbol.STYLE_SOLID,&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;color: new Color([0,128,0, 0.5]),&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;outline: new SimpleLineSymbol({&lt;BR /&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;style: SimpleLineSymbol.STYLE_SOLID,&lt;BR /&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;color: new Color([128,0,0,1]),&lt;BR /&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;width: 2&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;})&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;})&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;}),&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;labelsVisible: true,&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;labelingInfo: [{&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;labelExpression: "[DIST_NAME]",&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;labelPlacement: "always-horizontal",&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;symbol: new TextSymbol({&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;color: [255, 255, 255, 0.7],&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;// haloColor: [0, 0, 0, 0.7],&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;// haloSize: 1,&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;font: {&lt;BR /&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;size: 11&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}),&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;minScale: 9250000,&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;maxScale: 2400000&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}],&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;id: 'nam',&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;opacity: 1,&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;visible: true,&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;layerId: 1,&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I try working with this,&lt;/P&gt;&lt;P&gt;It shows me error as,&lt;/P&gt;&lt;P&gt;"SceneView.js:1671 Uncaught (in promise) TypeError: f.labelClass.getLabelExpression is not a function(…)"&lt;/P&gt;&lt;P&gt;How do I solve this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2016 06:56:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79110#M7231</guid>
      <dc:creator>SabbiuShah</dc:creator>
      <dc:date>2016-11-21T06:56:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to change feature layer style using its parameters</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79111#M7232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Everything worked till now.&lt;/P&gt;&lt;P&gt;Now I would like to know, "What do I need to see for showing the name of the district (which is stored in one attribute in the given MapServer) above the district region?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2016 09:40:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79111#M7232</guid>
      <dc:creator>SabbiuShah</dc:creator>
      <dc:date>2016-11-21T09:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to change feature layer style using its parameters</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79112#M7233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should post your new question under a new topic. &amp;nbsp;For labelling have a look at&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/3/jsapi/labellayer-amd.html" title="https://developers.arcgis.com/javascript/3/jsapi/labellayer-amd.html"&gt;LabelLayer | API Reference | ArcGIS API for JavaScript 3.18&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2016 10:54:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79112#M7233</guid>
      <dc:creator>FC_Basson</dc:creator>
      <dc:date>2016-11-21T10:54:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to change feature layer style using its parameters</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79113#M7234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have a look at this sample. &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/3/jssamples/layers_label.html" title="https://developers.arcgis.com/javascript/3/jssamples/layers_label.html"&gt;Labeling features on the client | ArcGIS API for JavaScript 3.18&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I usually label the features before publishing the maps in the ArcGIS Server. That way I can call all the maps along with labels using ArcGISDynamicMapServiceLayer module.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2016 14:52:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79113#M7234</guid>
      <dc:creator>SarojThapa1</dc:creator>
      <dc:date>2016-11-21T14:52:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to change feature layer style using its parameters</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79114#M7235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In case of ArcGIS API for JavaScript 4.1 what do I need to look into? It says that, it supports only for sceneview ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yeah, in the mapserver it already have the labeling information, but it is not showing on my side. So, I thought I shall label it myself.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2016 15:15:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79114#M7235</guid>
      <dc:creator>SabbiuShah</dc:creator>
      <dc:date>2016-11-21T15:15:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to change feature layer style using its parameters</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79115#M7236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah.&lt;/P&gt;&lt;P&gt;Actually, the discussion with Saroj was helpful. So, I asked everything in the same. I shall later edit the title and publish my codes accordingly.&lt;/P&gt;&lt;P&gt;Thanks for your concern &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2016 15:33:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79115#M7236</guid>
      <dc:creator>SabbiuShah</dc:creator>
      <dc:date>2016-11-21T15:33:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to change feature layer style using its parameters</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79116#M7237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Glad I could help you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2016 15:55:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79116#M7237</guid>
      <dc:creator>SarojThapa1</dc:creator>
      <dc:date>2016-11-21T15:55:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to change feature layer style using its parameters</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79117#M7238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can label it yourself programmatically. I use ArcGIS API 3.18 because I work with 2D maps and I need Editing functionalities that are fully supported by version 3.18. I am not sure about 4.1 as far as labeling programatically is concerned. But I would guess the codes should be very similar in 3.18 and 4.11.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2016 15:58:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79117#M7238</guid>
      <dc:creator>SarojThapa1</dc:creator>
      <dc:date>2016-11-21T15:58:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to change feature layer style using its parameters</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79118#M7239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Okay! I will look into it.&lt;/P&gt;&lt;P&gt;What are the steps to&amp;nbsp;create MapServer in our own server? What kind of data do I need to have?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Nov 2016 05:55:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-style-using-its/m-p/79118#M7239</guid>
      <dc:creator>SabbiuShah</dc:creator>
      <dc:date>2016-11-23T05:55:00Z</dc:date>
    </item>
  </channel>
</rss>

