<?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: Change the Polygon width on ARCGIS Layers in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-the-polygon-width-on-arcgis-layers/m-p/323950#M29853</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;helen,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;very glad to help.&amp;nbsp; when you have a moment, please consider marking this thread as 'answered'.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 May 2014 22:43:23 GMT</pubDate>
    <dc:creator>JohnGravois</dc:creator>
    <dc:date>2014-05-14T22:43:23Z</dc:date>
    <item>
      <title>Change the Polygon width on ARCGIS Layers</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-the-polygon-width-on-arcgis-layers/m-p/323947#M29850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I want to change the polygon boundary &lt;/SPAN&gt;&lt;STRONG&gt;width &lt;/STRONG&gt;&lt;SPAN&gt;for my zipcode layers inside javascript API for ARCGIS.Does any one know on how I can do it?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am using a rest webservice for the zipcode layers&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is the code I use to get the zipcode layer on top of the base map.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;var queryTask = new esri.tasks.QueryTask(USZipCodesURLREST);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; var query = new esri.tasks.Query();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; query.outFields = ['ZIP'];&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; query.returnGeometry = true;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; query.outSpatialReference = $Guardian_Scripts_Application.$mapDiv.spatialReference;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; query.geometry = $Guardian_Scripts_Application.$mapDiv.extent;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; queryTask.execute(query, null, null);&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2014 15:35:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-the-polygon-width-on-arcgis-layers/m-p/323947#M29850</guid>
      <dc:creator>HelenAraya1</dc:creator>
      <dc:date>2014-05-09T15:35:58Z</dc:date>
    </item>
    <item>
      <title>Re: Change the Polygon width on ARCGIS Layers</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-the-polygon-width-on-arcgis-layers/m-p/323948#M29851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;hi helen,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;if you are passing the results of your query to a generic graphics layer, you can make the symbology anything you want.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;new SimpleLineSymbol(style,color,&lt;/SPAN&gt;&lt;STRONG&gt;width&lt;/STRONG&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;A class="jive-link-external-small" href="https://developers.arcgis.com/javascript/jsapi/simplelinesymbol-amd.html" rel="nofollow" target="_blank"&gt;https://developers.arcgis.com/javascript/jsapi/simplelinesymbol-amd.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;when working with featureLayers, by default we inherit the symbology from the service itself, but you are able to override and set your own symbology on the clientside in that situation too. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;FeatureLayer.setRenderer()&lt;/SPAN&gt;&lt;BR /&gt;&lt;A class="jive-link-external-small" href="https://developers.arcgis.com/javascript/jsapi/featurelayer-amd.html#setrenderer" rel="nofollow" target="_blank"&gt;https://developers.arcgis.com/javascript/jsapi/featurelayer-amd.html#setrenderer&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2014 16:15:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-the-polygon-width-on-arcgis-layers/m-p/323948#M29851</guid>
      <dc:creator>JohnGravois</dc:creator>
      <dc:date>2014-05-12T16:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: Change the Polygon width on ARCGIS Layers</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-the-polygon-width-on-arcgis-layers/m-p/323949#M29852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;hi helen,&lt;BR /&gt;&lt;BR /&gt;if you are passing the results of your query to a generic graphics layer, you can make the symbology anything you want.&lt;BR /&gt;&lt;BR /&gt;new SimpleLineSymbol(style,color,&lt;STRONG&gt;width&lt;/STRONG&gt;)&lt;BR /&gt;&lt;A href="https://developers.arcgis.com/javascript/jsapi/simplelinesymbol-amd.html"&gt;https://developers.arcgis.com/javascript/jsapi/simplelinesymbol-amd.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;when working with featureLayers, by default we inherit the symbology from the service itself, but you are able to override and set your own symbology on the clientside in that situation too. &lt;BR /&gt;&lt;BR /&gt;FeatureLayer.setRenderer()&lt;BR /&gt;&lt;A href="https://developers.arcgis.com/javascript/jsapi/featurelayer-amd.html#setrenderer"&gt;https://developers.arcgis.com/javascript/jsapi/featurelayer-amd.html#setrenderer&lt;/A&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks a lot that worked for me!!!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2014 22:40:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-the-polygon-width-on-arcgis-layers/m-p/323949#M29852</guid>
      <dc:creator>HelenAraya1</dc:creator>
      <dc:date>2014-05-14T22:40:09Z</dc:date>
    </item>
    <item>
      <title>Re: Change the Polygon width on ARCGIS Layers</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-the-polygon-width-on-arcgis-layers/m-p/323950#M29853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;helen,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;very glad to help.&amp;nbsp; when you have a moment, please consider marking this thread as 'answered'.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2014 22:43:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-the-polygon-width-on-arcgis-layers/m-p/323950#M29853</guid>
      <dc:creator>JohnGravois</dc:creator>
      <dc:date>2014-05-14T22:43:23Z</dc:date>
    </item>
    <item>
      <title>Re: Change the Polygon width on ARCGIS Layers</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-the-polygon-width-on-arcgis-layers/m-p/323951#M29854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;helen,&lt;BR /&gt;&lt;BR /&gt;very glad to help.&amp;nbsp; when you have a moment, please consider marking this thread as 'answered'.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Can you let me know how I can set it answered. I am not sure how to do that.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2014 15:12:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-the-polygon-width-on-arcgis-layers/m-p/323951#M29854</guid>
      <dc:creator>HelenAraya1</dc:creator>
      <dc:date>2014-05-15T15:12:20Z</dc:date>
    </item>
    <item>
      <title>Re: Change the Polygon width on ARCGIS Layers</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-the-polygon-width-on-arcgis-layers/m-p/323952#M29855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;no worries, just click the �??check mark�?� icon on the right side of a helpful reply.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://resources.arcgis.com/en/help/forums-mvp/"&gt;http://resources.arcgis.com/en/help/forums-mvp/&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2014 15:22:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-the-polygon-width-on-arcgis-layers/m-p/323952#M29855</guid>
      <dc:creator>JohnGravois</dc:creator>
      <dc:date>2014-05-15T15:22:55Z</dc:date>
    </item>
  </channel>
</rss>

