<?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: Zoom to Full Extent in ArcGIS API for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/zoom-to-full-extent/m-p/335574#M8048</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Josh, I'm assuming this is in regards to the new Flex Viewer...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;FYI - "Zoom to full extent" functionality will be part of a Navigation Widget that we plan to include in version 2.1 of the ArcGIS Viewer for Flex.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 09 Sep 2010 00:16:08 GMT</pubDate>
    <dc:creator>BjornSvensson</dc:creator>
    <dc:date>2010-09-09T00:16:08Z</dc:date>
    <item>
      <title>Zoom to Full Extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/zoom-to-full-extent/m-p/335572#M8046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Is there a way to zoom to the full extent of the map by adding some some sort of widget or feature to the header? I have read through similar posts, however, I have not read anything specific about "zoom to full extent". Also, any reason why my map background used to display white as it is suppose to be in my web browser but it is now black like the rest of the UI around the map? (off topic I know, just didnt want to posts several different posts for what is probably an easy fix). Thanks!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Josh C.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Sep 2010 12:34:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/zoom-to-full-extent/m-p/335572#M8046</guid>
      <dc:creator>JoshuaCoates</dc:creator>
      <dc:date>2010-09-08T12:34:40Z</dc:date>
    </item>
    <item>
      <title>Re: Zoom to Full Extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/zoom-to-full-extent/m-p/335573#M8047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Josh,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;To automatically zoom to the full extent of the map put the values for the full extent as properties similar to this. I just copied and pasted from the API doc samples, but you should get the idea:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;
&amp;lt;s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
&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; xmlns:s="library://ns.adobe.com/flex/spark"
&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; xmlns:esri="http://www.esri.com/2008/ags"
&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; pageTitle="World Street Map"&amp;gt;

&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!--
&amp;nbsp;&amp;nbsp;&amp;nbsp; This sample shows how to add a street basemap layer to your application.

&amp;nbsp;&amp;nbsp;&amp;nbsp; The sample uses a cached map service from ArcGIS Online.

&amp;nbsp;&amp;nbsp;&amp;nbsp; You can browse the ArcGIS.com site for additional online basemap and reference
&amp;nbsp;&amp;nbsp;&amp;nbsp; map services or publish your own geographic data as a service using ArcGIS Server.
&amp;nbsp;&amp;nbsp;&amp;nbsp; --&amp;gt;

&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;fx:Declarations&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:Extent id="initialExtent"
&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; xmin="-17731" ymin="6710077" xmax="-12495" ymax="6712279"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:SpatialReference wkid="102100"/&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:Extent&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/fx:Declarations&amp;gt;

&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:Map extent="{initialExtent}"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:ArcGISTiledMapServiceLayer url="http://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer"/&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:Map&amp;gt;
&amp;lt;/s:Application&amp;gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I know you didn't ask about it, but to zoom to the full extent of the map manually try something like this were tiledMapLyr1 is the id of your map service layer:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;protected function button1_clickHandler(event:MouseEvent):void&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[INDENT]var newExtent:Extent = tiledMapLyr1.fullExtent; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;map.extent = newExtent;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[/INDENT]}&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can find this info in the API reference, for a tiledMapServiceLayer you'd look here: &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/layers/TiledMapServiceLayer.html" rel="nofollow noopener noreferrer" target="_blank"&gt;http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/layers/TiledMapServiceLayer.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In regards to the background color behind the map, that is based on the backgroundColor property that is set for your application, for example:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;s:Application&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&gt;[INDENT]xmlns:fx="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://ns.adobe.com/mxml/2009" rel="nofollow noopener noreferrer" target="_blank"&gt;http://ns.adobe.com/mxml/2009&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;xmlns:s="library://ns.adobe.com/flex/spark"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&gt;xmlns:esri="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.esri.com/2008/ags" rel="nofollow noopener noreferrer" target="_blank"&gt;http://www.esri.com/2008/ags&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;pageTitle="World Topographic Map"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;backgroundColor="black"&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[/INDENT]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;You'll just need to check and see what that is set too in your app. I hope that helps,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-Andy&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ESRI Developer Network (EDN)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 15:53:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/zoom-to-full-extent/m-p/335573#M8047</guid>
      <dc:creator>AndyGup</dc:creator>
      <dc:date>2021-12-11T15:53:39Z</dc:date>
    </item>
    <item>
      <title>Re: Zoom to Full Extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/zoom-to-full-extent/m-p/335574#M8048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Josh, I'm assuming this is in regards to the new Flex Viewer...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;FYI - "Zoom to full extent" functionality will be part of a Navigation Widget that we plan to include in version 2.1 of the ArcGIS Viewer for Flex.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Sep 2010 00:16:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/zoom-to-full-extent/m-p/335574#M8048</guid>
      <dc:creator>BjornSvensson</dc:creator>
      <dc:date>2010-09-09T00:16:08Z</dc:date>
    </item>
    <item>
      <title>Re: Zoom to Full Extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/zoom-to-full-extent/m-p/335575#M8049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yea that didnt really help too much, but thanks anyway. I was just looking to have a button to go to the initial extent of the map like bjorn was saying. I guess I'll have to wait.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Sep 2010 12:37:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/zoom-to-full-extent/m-p/335575#M8049</guid>
      <dc:creator>JoshuaCoates</dc:creator>
      <dc:date>2010-09-09T12:37:17Z</dc:date>
    </item>
    <item>
      <title>Re: Zoom to Full Extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/zoom-to-full-extent/m-p/335576#M8050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Josh, I'm assuming this is in regards to the new Flex Viewer...&lt;BR /&gt; &lt;BR /&gt;FYI - "Zoom to full extent" functionality will be part of a Navigation Widget that we plan to include in version 2.1 of the ArcGIS Viewer for Flex.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there a list on the new functionality that will be included in 2.1?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I just created a primitive navigation widget; while I did learn a lot, I just as soon use your stuff?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Sep 2010 17:07:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/zoom-to-full-extent/m-p/335576#M8050</guid>
      <dc:creator>BillLotz</dc:creator>
      <dc:date>2010-09-09T17:07:33Z</dc:date>
    </item>
    <item>
      <title>Re: Zoom to Full Extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/zoom-to-full-extent/m-p/335577#M8051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;knoxgis,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;would you be kind enough to share your code for the navigation widget you have created? I would like to see how it looks?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Sep 2010 18:14:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/zoom-to-full-extent/m-p/335577#M8051</guid>
      <dc:creator>JoshuaCoates</dc:creator>
      <dc:date>2010-09-09T18:14:32Z</dc:date>
    </item>
    <item>
      <title>Re: Zoom to Full Extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/zoom-to-full-extent/m-p/335578#M8052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;knoxgis,&lt;BR /&gt; &lt;BR /&gt;would you be kind enough to share your code for the navigation widget you have created? I would like to see how it looks?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;Joshua,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I just took the code from the navigation bar sample at &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/flex/samples/index.html"&gt;http://help.arcgis.com/en/webapi/flex/samples/index.html&lt;/A&gt;&lt;SPAN&gt; and put it in a widget. I copied the "Hello World" widget under the samples and put it in that.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I did have to nest the controlBarLayout in a Panel to get it to work.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Bill&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Sep 2010 11:15:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/zoom-to-full-extent/m-p/335578#M8052</guid>
      <dc:creator>BillLotz</dc:creator>
      <dc:date>2010-09-10T11:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: Zoom to Full Extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/zoom-to-full-extent/m-p/335579#M8053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Can I just insert all the code from that, from " &amp;lt;fx:Script&amp;gt; all the way to the bottom into my MapManager.mxml and it work? What do you mean by "nest the controlBarLayout in a Panel"? Can you post your mxml so I can look at this? I really do not know much about creating code so seeing it helps. Thanks for your help!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Sep 2010 11:33:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/zoom-to-full-extent/m-p/335579#M8053</guid>
      <dc:creator>JoshuaCoates</dc:creator>
      <dc:date>2010-09-10T11:33:59Z</dc:date>
    </item>
    <item>
      <title>Re: Zoom to Full Extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/zoom-to-full-extent/m-p/335580#M8054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Can I just insert all the code from that, from " &amp;lt;fx:Script&amp;gt; all the way to the bottom into my MapManager.mxml and it work? What do you mean by "nest the controlBarLayout in a Panel"? Can you post your mxml so I can look at this? I really do not know much about creating code so seeing it helps. Thanks for your help!&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;Josua,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Guess what, I don't know much about creating code either! I posted (or attempted to) a zip of the mxml. You will se that I haven't done much to this yet, it isn't real refined,&amp;nbsp; but it does work for me. It sound like the widget in the next release will be the way to go, but it is good to play around with the code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I just got my learner's permit.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Bill&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Sep 2010 12:42:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/zoom-to-full-extent/m-p/335580#M8054</guid>
      <dc:creator>BillLotz</dc:creator>
      <dc:date>2010-09-10T12:42:39Z</dc:date>
    </item>
    <item>
      <title>Re: Zoom to Full Extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/zoom-to-full-extent/m-p/335581#M8055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Bill, it works like a charm. Well I havent actually "used" the tools yet, because I'm in the process of caching my map services so I can not physically see my map to test the funcionality of the tools. But i have the widget showing up and the tools are in there with my custome title and ID:) I appreciate it!!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Josh C.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Sep 2010 13:21:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/zoom-to-full-extent/m-p/335581#M8055</guid>
      <dc:creator>JoshuaCoates</dc:creator>
      <dc:date>2010-09-10T13:21:17Z</dc:date>
    </item>
    <item>
      <title>Re: Zoom to Full Extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/zoom-to-full-extent/m-p/335582#M8056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Josh, I'm assuming this is in regards to the new Flex Viewer...&lt;BR /&gt;&lt;BR /&gt;FYI - "Zoom to full extent" functionality will be part of a Navigation Widget that we plan to include in version 2.1 of the ArcGIS Viewer for Flex.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Bjorn,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The new Navigation Widget is great. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there any way to bring the map to my inital extent when I click on the "Full Extent" button? I guess it reads the full extent from the ESRI's Web map service by default.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Oct 2010 18:47:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/zoom-to-full-extent/m-p/335582#M8056</guid>
      <dc:creator>NadeemShaukat</dc:creator>
      <dc:date>2010-10-13T18:47:00Z</dc:date>
    </item>
    <item>
      <title>Re: Zoom to Full Extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/zoom-to-full-extent/m-p/335583#M8057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Is there any way to bring the map to my inital extent when I click on the "Full Extent" button?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes, setting the fullextent to the same value as the initialextent should achieve that.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;lt;map
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; initialextent="-13046840 4036096 -13045400 4036867"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fullextent="-13046840 4036096 -13045400 4036867"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; top="40"&amp;gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 15:53:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/zoom-to-full-extent/m-p/335583#M8057</guid>
      <dc:creator>BjornSvensson</dc:creator>
      <dc:date>2021-12-11T15:53:41Z</dc:date>
    </item>
    <item>
      <title>Re: Zoom to Full Extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/zoom-to-full-extent/m-p/335584#M8058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I need some help in setting up my full extent. I am using ESRI's default web services for&amp;nbsp; my basemap. I am also using the new FLex API. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; I setup my initial extent to open up displaying my city, but after panning and zooming around, if I click the full extent from the navigation bar, it takes to the extent of the entire world. i thought setting the fullextent to the same value as the initialextent would fix it, can't get it work.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;jerry&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Apr 2011 11:52:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/zoom-to-full-extent/m-p/335584#M8058</guid>
      <dc:creator>jerrysalinas</dc:creator>
      <dc:date>2011-04-13T11:52:57Z</dc:date>
    </item>
  </channel>
</rss>

