<?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 Modify Search Widget to use Popup from Web Map in ArcGIS Web AppBuilder Questions</title>
    <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/modify-search-widget-to-use-popup-from-web-map/m-p/105070#M3142</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Need to modify Search Widget to use popup from Web Map.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Background:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am working on an application using &lt;STRONG&gt;WAB&lt;/STRONG&gt; The web map used in this application has a feature layer with 3 Polygons. Menard SMART service Area, Sangamon SMART service Area and SMTD service area. The Information Lookup template is close but not quite what I need.&amp;nbsp;&amp;nbsp;I realize I need to modify the Search widget to add a click at the location of the "found" address. I searched GeoNET and found a couple similar questions with Answers. The newest answer I found&amp;nbsp;was located&amp;nbsp;&lt;A _jive_internal="true" href="https://community.esri.com/thread/200804-how-to-customize-search-widget-to-show-feature-pop-up"&gt;here&lt;/A&gt;:&amp;nbsp; which is providing the needed functionality but there are a few quirks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) For some reason addresses located within a half mile of the polygon boundary is returning two choices for the popup instead of only 1 when zoomed to out to limits of web map.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) After performing one search if you x out of the search and type another address to search, the popup won't be displayed. This also happens anytime you are zoomed in even after you first start the application. Zoom in to like neighborhood area somewhere and perform a search anywhere. The point will plot but the pop up won't display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) Probably related to number 2 above. Using developer tools in chrome, Refresh app to start it new. Type in address: 11998 Catholic Cemetery Rd, Glenarm, Illinois clear popup then click on "show search results for 11998..." and the click on the address that shows up under the Search tool. You will see error exceptions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My test application is called &lt;A href="https://gis.co.sangamon.il.us/smarttest/"&gt;SMART Service Test App&lt;/A&gt;&amp;nbsp;and can be accessed&amp;nbsp; by following that link.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Addresses to try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;119 Rhodes Ave Glenarm, Illinois (shows popup without any additions, correct)&lt;BR /&gt; 11998 Catholic Cemetery Rd, Glenarm, Illinois (shows popup with '1 of 2', incorrect)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It seems that if the address is a little farther than half a mile from another polygon it works. But if the address plots within a half mile it always has (1 of 2) in the popup with the wrong result being the 2nd one).&amp;nbsp; It as if the click is utilizing a buffer of half a mile.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I attached screenshots of examples and the screenshot of the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I modified the Search&amp;nbsp; Widget.js file as follows&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;_onSearchResults:&amp;nbsp; (added the following to end of onSearchResult function):&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;if (results &amp;amp;&amp;amp; evt.numResults &amp;gt; 0) {&lt;BR /&gt; var mpPt;&lt;BR /&gt; for (var i in results) {&lt;BR /&gt; if(results&lt;I&gt;[0].feature.geometry.type === "point"){&lt;BR /&gt; mpPt = results&lt;I&gt;[0].feature.geometry;&lt;BR /&gt; }else{&lt;BR /&gt; mpPt = results&lt;I&gt;[0].feature.geometry.getExtent().getCenter();&lt;BR /&gt; }&lt;BR /&gt; console.log( "onSearchResults");&lt;BR /&gt; var scrPt = this.map.toScreen(mpPt);&lt;BR /&gt; this.map.emit("click", { bubbles: true, cancelable: true, mapPoint: mpPt ,screenPoint: scrPt });&lt;BR /&gt; break;&lt;BR /&gt; }&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/P&gt;&lt;P&gt;----------------------------------------------&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;_onSelectResult:&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;(added the following to end of onSelectResult function):&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;var mpPt;&lt;BR /&gt;if(result.feature.geometry.type === "point"){&lt;BR /&gt; mpPt = result.feature.geometry;&lt;BR /&gt; }else{&lt;BR /&gt; mpPt = result.feature.geometry.getExtent().getCenter();&lt;BR /&gt; }&lt;BR /&gt;console.log( "OnSelectResult");&lt;BR /&gt;var scrPt = this.map.toScreen(mpPt);&lt;BR /&gt;this.map.emit("click", { bubbles: true, cancelable: true, mapPoint: mpPt ,screenPoint: scrPt });&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Aug 2018 14:45:33 GMT</pubDate>
    <dc:creator>TracyGarrison1</dc:creator>
    <dc:date>2018-08-28T14:45:33Z</dc:date>
    <item>
      <title>Modify Search Widget to use Popup from Web Map</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/modify-search-widget-to-use-popup-from-web-map/m-p/105070#M3142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Need to modify Search Widget to use popup from Web Map.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Background:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am working on an application using &lt;STRONG&gt;WAB&lt;/STRONG&gt; The web map used in this application has a feature layer with 3 Polygons. Menard SMART service Area, Sangamon SMART service Area and SMTD service area. The Information Lookup template is close but not quite what I need.&amp;nbsp;&amp;nbsp;I realize I need to modify the Search widget to add a click at the location of the "found" address. I searched GeoNET and found a couple similar questions with Answers. The newest answer I found&amp;nbsp;was located&amp;nbsp;&lt;A _jive_internal="true" href="https://community.esri.com/thread/200804-how-to-customize-search-widget-to-show-feature-pop-up"&gt;here&lt;/A&gt;:&amp;nbsp; which is providing the needed functionality but there are a few quirks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) For some reason addresses located within a half mile of the polygon boundary is returning two choices for the popup instead of only 1 when zoomed to out to limits of web map.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) After performing one search if you x out of the search and type another address to search, the popup won't be displayed. This also happens anytime you are zoomed in even after you first start the application. Zoom in to like neighborhood area somewhere and perform a search anywhere. The point will plot but the pop up won't display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) Probably related to number 2 above. Using developer tools in chrome, Refresh app to start it new. Type in address: 11998 Catholic Cemetery Rd, Glenarm, Illinois clear popup then click on "show search results for 11998..." and the click on the address that shows up under the Search tool. You will see error exceptions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My test application is called &lt;A href="https://gis.co.sangamon.il.us/smarttest/"&gt;SMART Service Test App&lt;/A&gt;&amp;nbsp;and can be accessed&amp;nbsp; by following that link.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Addresses to try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;119 Rhodes Ave Glenarm, Illinois (shows popup without any additions, correct)&lt;BR /&gt; 11998 Catholic Cemetery Rd, Glenarm, Illinois (shows popup with '1 of 2', incorrect)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It seems that if the address is a little farther than half a mile from another polygon it works. But if the address plots within a half mile it always has (1 of 2) in the popup with the wrong result being the 2nd one).&amp;nbsp; It as if the click is utilizing a buffer of half a mile.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I attached screenshots of examples and the screenshot of the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I modified the Search&amp;nbsp; Widget.js file as follows&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;_onSearchResults:&amp;nbsp; (added the following to end of onSearchResult function):&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;if (results &amp;amp;&amp;amp; evt.numResults &amp;gt; 0) {&lt;BR /&gt; var mpPt;&lt;BR /&gt; for (var i in results) {&lt;BR /&gt; if(results&lt;I&gt;[0].feature.geometry.type === "point"){&lt;BR /&gt; mpPt = results&lt;I&gt;[0].feature.geometry;&lt;BR /&gt; }else{&lt;BR /&gt; mpPt = results&lt;I&gt;[0].feature.geometry.getExtent().getCenter();&lt;BR /&gt; }&lt;BR /&gt; console.log( "onSearchResults");&lt;BR /&gt; var scrPt = this.map.toScreen(mpPt);&lt;BR /&gt; this.map.emit("click", { bubbles: true, cancelable: true, mapPoint: mpPt ,screenPoint: scrPt });&lt;BR /&gt; break;&lt;BR /&gt; }&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/P&gt;&lt;P&gt;----------------------------------------------&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;_onSelectResult:&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;(added the following to end of onSelectResult function):&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;var mpPt;&lt;BR /&gt;if(result.feature.geometry.type === "point"){&lt;BR /&gt; mpPt = result.feature.geometry;&lt;BR /&gt; }else{&lt;BR /&gt; mpPt = result.feature.geometry.getExtent().getCenter();&lt;BR /&gt; }&lt;BR /&gt;console.log( "OnSelectResult");&lt;BR /&gt;var scrPt = this.map.toScreen(mpPt);&lt;BR /&gt;this.map.emit("click", { bubbles: true, cancelable: true, mapPoint: mpPt ,screenPoint: scrPt });&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2018 14:45:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/modify-search-widget-to-use-popup-from-web-map/m-p/105070#M3142</guid>
      <dc:creator>TracyGarrison1</dc:creator>
      <dc:date>2018-08-28T14:45:33Z</dc:date>
    </item>
    <item>
      <title>Re: Modify Search Widget to use Popup from Web Map</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/modify-search-widget-to-use-popup-from-web-map/m-p/105071#M3143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tracy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;Remove the code from the _onSearchResults portion (that part was really not need) and change the _onSelectResult to this:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="token function"&gt;setTimeout&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;lang&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;hitch&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;this&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;function&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="comment token"&gt;// added by me&lt;/SPAN&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;&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; mpPt&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;result&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;geometry&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;type &lt;SPAN class="operator token"&gt;===&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"point"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mpPt &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; result&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;geometry&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;else&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mpPt &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; result&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;geometry&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;getExtent&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;getCenter&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; scrPt &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;this&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;map&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;toScreen&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;mpPt&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;this&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;map&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;emit&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"click"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt; bubbles&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;true&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; cancelable&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;true&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; mapPoint&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; mpPt &lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;screenPoint&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; scrPt &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="comment token"&gt;// end of added by me&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1000&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:25:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/modify-search-widget-to-use-popup-from-web-map/m-p/105071#M3143</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-11T06:25:01Z</dc:date>
    </item>
    <item>
      <title>Re: Modify Search Widget to use Popup from Web Map</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/modify-search-widget-to-use-popup-from-web-map/m-p/105072#M3144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perfect!&amp;nbsp; That did it.&amp;nbsp; So, I was getting two answers because I had that the code in the onSearch function as well?&amp;nbsp; &amp;nbsp;The error I was getting had something to do with a timeout issue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for the help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2018 16:59:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/modify-search-widget-to-use-popup-from-web-map/m-p/105072#M3144</guid>
      <dc:creator>TracyGarrison1</dc:creator>
      <dc:date>2018-08-28T16:59:29Z</dc:date>
    </item>
  </channel>
</rss>

