<?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: Would like to turn off Identify symbology in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/would-like-to-turn-off-identify-symbology/m-p/604732#M56642</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Diana's answer will do what you want�?? specifying highlight: false will cause features associated with the popup to not be highlighted.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here's an alternate solution where the address point (rather than the city limits polygon) is passed to the popup:&amp;nbsp; &lt;/SPAN&gt;&lt;A href="http://jsfiddle.net/95KYJ/" rel="nofollow noopener noreferrer" target="_blank"&gt;http://jsfiddle.net/95KYJ/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Note line 87 (which I've commented out):&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
map.infoWindow.highlight = false;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Dec 2021 01:56:14 GMT</pubDate>
    <dc:creator>derekswingley1</dc:creator>
    <dc:date>2021-12-12T01:56:14Z</dc:date>
    <item>
      <title>Would like to turn off Identify symbology</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/would-like-to-turn-off-identify-symbology/m-p/604730#M56640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have cobbled together a javascript map application to be used for determining if an address is within our City limits.&amp;nbsp; The application combines functionality of the geocode and identify samples.&amp;nbsp; After pressing the Locate button, an address is found, zoomed to, marked by a symbol, and then a popup automatically appears to display Identify results of whether the location is in City limits or not. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is the URL for the map:&amp;nbsp; &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://maps.rockvillemd.gov/RKV_addresses/" rel="nofollow" target="_blank"&gt;http://maps.rockvillemd.gov/RKV_addresses/&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp; (I have disabled zooming to the result in order to demonstrate the problem.)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Note that the outline of the polygon for within City limits is highlighted, but I don't need or want that for the purpose of this app.&amp;nbsp; How can I disable or null out the highlighting of the polygon which is the object of the Identify function?&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I won't copy the source code here since it is visible in the web page.&amp;nbsp; This is my first attempt at a javascript map, so you can take that into consideration.&amp;nbsp; I did get some help from someone who knows javascript but not GIS.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Marc&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Apr 2013 20:04:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/would-like-to-turn-off-identify-symbology/m-p/604730#M56640</guid>
      <dc:creator>MarcWeinshenker1</dc:creator>
      <dc:date>2013-04-29T20:04:08Z</dc:date>
    </item>
    <item>
      <title>Re: Would like to turn off Identify symbology</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/would-like-to-turn-off-identify-symbology/m-p/604731#M56641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The highlight of the polygon is controlled by your InfoWindow; which in this case is your Popup. If you create a new popup object and set the contructor option of highlight: false .. you might get that to turn off.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;new esri.dijit.Popup(options?, srcNodeRef)&lt;/SPAN&gt;&lt;BR /&gt;&lt;A class="jive-link-external-small" href="http://help.arcgis.com/en/webapi/javascript/arcgis/jsapi/popup.html" rel="nofollow" target="_blank"&gt;http://help.arcgis.com/en/webapi/javascript/arcgis/jsapi/popup.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;There are plenty of samples in the Javascript API to guide you through creating and setting the popup object as you infoWindow. Below is a simple example that shows you how you can create the popup object and then hook it up to your map. Note that I went ahead and showed you were you might be able to get this to work in your code. Have not tested this so it might still need some tweaking. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;function init() {&amp;nbsp; var popup = new esri.dijit.Popup({ &amp;nbsp;&amp;nbsp;&amp;nbsp; highlight: false }, dojo.create("div"));&amp;nbsp; /*var infoWindow = new myModules.InfoWindow({ &amp;nbsp; domNode: dojo.create("div", null, dojo.byId("map")) });*/&amp;nbsp; map = new esri.Map("map", { basemap: "streets", &amp;nbsp; infoWindow: popup, &amp;nbsp; center: [-77.16, 39.09], &amp;nbsp; zoom: 13 });&amp;nbsp; //or you can set it seperately if want to wait till later by using the setInfoWindow method. //map.setInfoWindow(popup);&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Apr 2013 20:32:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/would-like-to-turn-off-identify-symbology/m-p/604731#M56641</guid>
      <dc:creator>DianaBenedict</dc:creator>
      <dc:date>2013-04-29T20:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: Would like to turn off Identify symbology</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/would-like-to-turn-off-identify-symbology/m-p/604732#M56642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Diana's answer will do what you want�?? specifying highlight: false will cause features associated with the popup to not be highlighted.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here's an alternate solution where the address point (rather than the city limits polygon) is passed to the popup:&amp;nbsp; &lt;/SPAN&gt;&lt;A href="http://jsfiddle.net/95KYJ/" rel="nofollow noopener noreferrer" target="_blank"&gt;http://jsfiddle.net/95KYJ/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Note line 87 (which I've commented out):&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
map.infoWindow.highlight = false;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 01:56:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/would-like-to-turn-off-identify-symbology/m-p/604732#M56642</guid>
      <dc:creator>derekswingley1</dc:creator>
      <dc:date>2021-12-12T01:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: Would like to turn off Identify symbology</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/would-like-to-turn-off-identify-symbology/m-p/604733#M56643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thank you Diana and Derek.&amp;nbsp; I'm not experienced enough to fully follow what you've done, but having something that works goes a long way.&amp;nbsp; Much appreciated.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Marc&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Apr 2013 11:40:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/would-like-to-turn-off-identify-symbology/m-p/604733#M56643</guid>
      <dc:creator>MarcWeinshenker1</dc:creator>
      <dc:date>2013-04-30T11:40:30Z</dc:date>
    </item>
  </channel>
</rss>

