<?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 the zoom scale for the geocoder? in ArcGIS Web AppBuilder Questions</title>
    <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535118#M14077</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Andrews, it works on my end. I'm really appreciated for all your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 Oct 2015 13:06:03 GMT</pubDate>
    <dc:creator>haThach</dc:creator>
    <dc:date>2015-10-22T13:06:03Z</dc:date>
    <item>
      <title>how to change the zoom scale for the geocoder?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535101#M14060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would like to set the geocoder to zoom to 1:1200.&amp;nbsp; I think I would change the expand.0.0625 for the Point geometry but I am not sure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;if (feature) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var resultGeometry = feature.geometry;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (resultGeometry.type === 'point') {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; anchorPoint = resultGeometry;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; zoomExtent = this.map.extent.centerAt(anchorPoint).expand(0.0625);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else if (resultGeometry.type === 'polyline') {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; anchorPoint = resultGeometry.getPoint(0, 0);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; zoomExtent = resultGeometry.getExtent().expand(1.1);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else if (resultGeometry.type === 'polygon') {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; anchorPoint = resultGeometry.getCentroid();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; zoomExtent = resultGeometry.getExtent().expand(1.1);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else if (resultGeometry.type === 'mulitpoint') {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; anchorPoint = resultGeometry.getPoint(0);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; zoomExtent = resultGeometry.getExtent().expand(1.1);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; anchorPoint = resultGeometry;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; zoomExtent = this.map.extent;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 23:14:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535101#M14060</guid>
      <dc:creator>Pulaski_AreaGIS</dc:creator>
      <dc:date>2021-12-11T23:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: how to change the zoom scale for the geocoder?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535102#M14061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pulaski Area GIS,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; change the point logic something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;zoomExtent = &lt;SPAN class="keyword"&gt;this.map.extent.centerAt(anchorPoint);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="keyword"&gt;this.map.setScale(1200);&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2015 14:35:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535102#M14061</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-06-09T14:35:24Z</dc:date>
    </item>
    <item>
      <title>Re: how to change the zoom scale for the geocoder?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535103#M14062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;if (feature) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var resultGeometry = feature.geometry;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (resultGeometry.type === 'point') {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; anchorPoint = resultGeometry;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; zoomExtent = this.map.extent.centerAt(anchorPoint);this.map.setScale(1200);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else if (resultGeometry.type === 'polyline') {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; anchorPoint = resultGeometry.getPoint(0, 0);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; zoomExtent = resultGeometry.getExtent().expand(1.1);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else if (resultGeometry.type === 'polygon') {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; anchorPoint = resultGeometry.getCentroid();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; zoomExtent = resultGeometry.getExtent().expand(1.1);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else if (resultGeometry.type === 'mulitpoint') {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; anchorPoint = resultGeometry.getPoint(0);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; zoomExtent = resultGeometry.getExtent().expand(1.1);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; anchorPoint = resultGeometry;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; zoomExtent = this.map.extent;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/PRE&gt;&lt;P&gt;I tried this but did get any result in the app.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 23:14:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535103#M14062</guid>
      <dc:creator>Pulaski_AreaGIS</dc:creator>
      <dc:date>2021-12-11T23:14:52Z</dc:date>
    </item>
    <item>
      <title>Re: how to change the zoom scale for the geocoder?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535104#M14063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pulaski Area GIS,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Make sure you are changing the widget.js for the Geocoder widget in the particular app you are testing. If you make the change in the client stemapp folder then you will only see the change in a new app.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2015 15:01:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535104#M14063</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-06-09T15:01:09Z</dc:date>
    </item>
    <item>
      <title>Re: how to change the zoom scale for the geocoder?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535105#M14064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I checked that, still see no change in the zoom levels.&amp;nbsp; Thanks for the help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2015 15:19:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535105#M14064</guid>
      <dc:creator>Pulaski_AreaGIS</dc:creator>
      <dc:date>2015-06-09T15:19:09Z</dc:date>
    </item>
    <item>
      <title>Re: how to change the zoom scale for the geocoder?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535106#M14065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pulaski Area GIS,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Well this took some figuring....&lt;/P&gt;&lt;P&gt;Make these changes and you should be able to get the point geocode to use a different scale (assuming that 1200 is different from what is already returning, I tested with a larger scale 4513.988705).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the showResults function (line one is very important):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;geocoder.autoNavigate = false;


&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (resultGeometry.type === 'point') {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; anchorPoint = resultGeometry;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //zoomExtent = this.map.extent.centerAt(anchorPoint).expand(0.0625);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.map.setScale(4513.988705);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.map.centerAt(anchorPoint);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the setupInfoWindowAndZoom function change the single line for:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;this.map.setExtent(newExtent);&lt;/PRE&gt;&lt;P&gt;to&lt;/P&gt;&lt;P&gt;&lt;/P&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; if(geocodeResult.feature &amp;amp;&amp;amp; geocodeResult.feature.geometry.type !== 'point'){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.map.setExtent(newExtent);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 23:14:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535106#M14065</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-11T23:14:54Z</dc:date>
    </item>
    <item>
      <title>Re: how to change the zoom scale for the geocoder?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535107#M14066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This worked but the Image is not refreshing on zoom.&amp;nbsp; Any thoughts?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2015 12:42:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535107#M14066</guid>
      <dc:creator>Pulaski_AreaGIS</dc:creator>
      <dc:date>2015-06-10T12:42:41Z</dc:date>
    </item>
    <item>
      <title>Re: how to change the zoom scale for the geocoder?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535108#M14067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pulaski Area GIS,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;but the Image is not refreshing on zoom&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;??? What image?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are there any errors in the web console?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2015 13:30:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535108#M14067</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-06-10T13:30:20Z</dc:date>
    </item>
    <item>
      <title>Re: how to change the zoom scale for the geocoder?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535109#M14068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, the basemap is not refreshing to the new scale.&amp;nbsp; I have one console error but is was there before, I started this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2015 13:56:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535109#M14068</guid>
      <dc:creator>Pulaski_AreaGIS</dc:creator>
      <dc:date>2015-06-10T13:56:44Z</dc:date>
    </item>
    <item>
      <title>Re: how to change the zoom scale for the geocoder?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535110#M14069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pulaski Area GIS,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Make sure that you are setting a scale that is equal to one of your maps LODs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2015 14:22:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535110#M14069</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-06-10T14:22:21Z</dc:date>
    </item>
    <item>
      <title>Re: how to change the zoom scale for the geocoder?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535111#M14070</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created a geocoder service using a polygon feature, the search widget result zoom really close on the map. I tried to find the location as pointed above but&amp;nbsp; can't seem to find the code to change the zoom scale extent setting.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2015 20:33:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535111#M14070</guid>
      <dc:creator>haThach</dc:creator>
      <dc:date>2015-10-15T20:33:47Z</dc:date>
    </item>
    <item>
      <title>Re: how to change the zoom scale for the geocoder?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535112#M14071</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ha Thach,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; This thread has t do with WAB 1.1. The search widget does not have a show results function (as it is all handled by the JS API internally).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2015 23:11:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535112#M14071</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-10-15T23:11:17Z</dc:date>
    </item>
    <item>
      <title>Re: how to change the zoom scale for the geocoder?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535113#M14072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Robert. Will there be some functions like this available on the next release of&amp;nbsp; WAB 1.3?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Oct 2015 03:06:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535113#M14072</guid>
      <dc:creator>haThach</dc:creator>
      <dc:date>2015-10-16T03:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: how to change the zoom scale for the geocoder?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535114#M14073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not that I am aware of. It would involve an JS API change.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Oct 2015 12:00:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535114#M14073</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-10-16T12:00:25Z</dc:date>
    </item>
    <item>
      <title>Re: how to change the zoom scale for the geocoder?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535115#M14074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it zooming in closer than the full extent of the polygon (i.e., can't see the entirety of the polygon you search for)? If so, you can calculate the polygon extents and configure that in the locator, before publishing the geocode service.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Oct 2015 13:20:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535115#M14074</guid>
      <dc:creator>ColeAndrews</dc:creator>
      <dc:date>2015-10-16T13:20:50Z</dc:date>
    </item>
    <item>
      <title>Re: how to change the zoom scale for the geocoder?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535116#M14075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, this is what I wanted to do.&amp;nbsp; I tried your approach&amp;nbsp; by creating a new field "&lt;STRONG&gt;zoomExtent&lt;/STRONG&gt;" and calculate using the shape area field. I didn't get it to work. Am I doing something wrong? This is what I get....&lt;/P&gt;&lt;P&gt;&lt;IMG alt="systemExtent.png" class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/132481_systemExtent.png" style="width: 620px; height: 317px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is how I setup for my system locator....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="systemLocator.png" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/132480_systemLocator.png" style="width: 620px; height: 452px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Oct 2015 18:29:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535116#M14075</guid>
      <dc:creator>haThach</dc:creator>
      <dc:date>2015-10-20T18:29:15Z</dc:date>
    </item>
    <item>
      <title>Re: how to change the zoom scale for the geocoder?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535117#M14076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If using a Geocode service, the zoom extents can be configured in the locator before publishing to a service. For a polygon feature, to set the zoom extent as the outer boundary (to show the entire polygons), try the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;In ArcMap, run "Add Geometry Attributes" tool. Input the polygon file and select EXTENT. Run.&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/132477_pastedImage_1.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/LI&gt;&lt;LI&gt;The ymin, ymax, xmin,xmax values are added for each feature.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;IMG class="image-2 jive-image" height="120" src="https://community.esri.com/legacyfs/online/132478_pastedImage_6.png" style="width: 342px; height: 108px;" width="366" /&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Configure the locator display extents to use the calculated extent fields. Create locator.&lt;/LI&gt;&lt;LI&gt;&lt;IMG class="image-3 jive-image" src="https://community.esri.com/legacyfs/online/132494_pastedImage_12.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/LI&gt;&lt;LI&gt;When you're done creating the locator, right click&amp;gt;&amp;gt;properties and make sure the output display extents is set to "yes"&lt;/LI&gt;&lt;LI&gt;&lt;IMG class="jive-image image-4" src="https://community.esri.com/legacyfs/online/132495_pastedImage_13.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once you publish the locator as a Geocode service and source the service in your web app geocode/search widget, the result is zoomed to these defined extents.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does this get at what you need?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Oct 2015 19:15:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535117#M14076</guid>
      <dc:creator>ColeAndrews</dc:creator>
      <dc:date>2015-10-20T19:15:11Z</dc:date>
    </item>
    <item>
      <title>Re: how to change the zoom scale for the geocoder?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535118#M14077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Andrews, it works on my end. I'm really appreciated for all your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2015 13:06:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-the-zoom-scale-for-the-geocoder/m-p/535118#M14077</guid>
      <dc:creator>haThach</dc:creator>
      <dc:date>2015-10-22T13:06:03Z</dc:date>
    </item>
  </channel>
</rss>

