<?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: feature layer zoom in in ArcGIS API for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/feature-layer-zoom-in/m-p/149707#M3474</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;About the utility function :&lt;BR /&gt;&lt;BR /&gt;GraphicUtil.getGeometries &lt;BR /&gt;&lt;BR /&gt;It extracts array of geometries from array of graphics &lt;BR /&gt;&lt;BR /&gt;Is there any way to get features that are outside and touching these geometries?&lt;BR /&gt;I mean if there are 20 geometries (of graphics), I want to get features that are outside the 20 geometries touching them...&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;You may be able to do this using a geoprocessing task:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/tasks/Geoprocessor.html"&gt;http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/tasks/Geoprocessor.html&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Sep 2010 20:44:30 GMT</pubDate>
    <dc:creator>DasaPaddock</dc:creator>
    <dc:date>2010-09-17T20:44:30Z</dc:date>
    <item>
      <title>feature layer zoom in</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/feature-layer-zoom-in/m-p/149698#M3465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;how to zoom in the results from the feature layer query?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Sep 2010 17:35:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/feature-layer-zoom-in/m-p/149698#M3465</guid>
      <dc:creator>abukhan</dc:creator>
      <dc:date>2010-09-15T17:35:03Z</dc:date>
    </item>
    <item>
      <title>Re: feature layer zoom in</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/feature-layer-zoom-in/m-p/149699#M3466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;A FeatureLayer is a subclass of a GraphcisLayer, so you can use GraphicUtil.getGraphicsExtent to do it, after you have done a selection on the FeatureLayer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;var ac:ArrayCollection = featureLayer.graphicProvider as ArrayCollection;
map.extent = GraphicUtil.getGraphicsExtent(ac.toArray());&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 08:05:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/feature-layer-zoom-in/m-p/149699#M3466</guid>
      <dc:creator>ReneRubalcava</dc:creator>
      <dc:date>2021-12-11T08:05:10Z</dc:date>
    </item>
    <item>
      <title>Re: feature layer zoom in</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/feature-layer-zoom-in/m-p/149700#M3467</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Which event in feature layer that fires at the end of query results? I mean in which event (in feature layer) fires when all the features are returned to the client from the server?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Sep 2010 18:13:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/feature-layer-zoom-in/m-p/149700#M3467</guid>
      <dc:creator>abukhan</dc:creator>
      <dc:date>2010-09-15T18:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: feature layer zoom in</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/feature-layer-zoom-in/m-p/149701#M3468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Looking at the docs&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/layers/FeatureLayer.html"&gt;http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/layers/FeatureLayer.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The returned event is QUERY_FEATURES_COMPLETE.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.esri.ags.events.FeatureLayerEvent.QUERY_FEATURES_COMPLETE&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/layers/FeatureLayer.html#event:queryFeaturesComplete"&gt;http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/layers/FeatureLayer.html#event:queryFeaturesComplete&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have not used queryFeatures in my apps yet, so I'm not sure if results will be displayed as graphics on screen, but the QUERY_FEATURES_COMPLETE event returns a FeatureSet.&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/events/FeatureLayerEvent.html"&gt;http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/events/FeatureLayerEvent.html&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Sep 2010 18:53:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/feature-layer-zoom-in/m-p/149701#M3468</guid>
      <dc:creator>ReneRubalcava</dc:creator>
      <dc:date>2010-09-15T18:53:18Z</dc:date>
    </item>
    <item>
      <title>Re: feature layer zoom in</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/feature-layer-zoom-in/m-p/149702#M3469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;QUERY_FEATURES_COMPLETE is for when you call the queryFeatures() method:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/layers/FeatureLayer.html#queryFeatures("&gt;http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/layers/FeatureLayer.html#queryFeatures(&lt;/A&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Listen for updateEnd if you want to know when the FeatureLayer has finished loading new features and made them available in it's graphicProvider.&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/layers/Layer.html#event:updateEnd"&gt;http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/layers/Layer.html#event:updateEnd&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Sep 2010 20:56:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/feature-layer-zoom-in/m-p/149702#M3469</guid>
      <dc:creator>DasaPaddock</dc:creator>
      <dc:date>2010-09-15T20:56:43Z</dc:date>
    </item>
    <item>
      <title>Re: feature layer zoom in</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/feature-layer-zoom-in/m-p/149703#M3470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;One issue with updateEnd that it even happens when panning or zooming (the feature layer gets updates with zooming and panning).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there any event that I can use when feature layer first time gets queried using definitionexpression.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;( i would like to zoomin to the return features at the initial time)...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So what is happening now If I put my code(for zooming in the return features) in the updateEnd event, any time user pans , it comes to the previous zooming....&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Sep 2010 18:38:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/feature-layer-zoom-in/m-p/149703#M3470</guid>
      <dc:creator>abukhan</dc:creator>
      <dc:date>2010-09-17T18:38:27Z</dc:date>
    </item>
    <item>
      <title>Re: feature layer zoom in</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/feature-layer-zoom-in/m-p/149704#M3471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;One way I solved this issue using an boolean variable that I set initially and the updateend checks for this boolean variable (only does zooming in the first time)..&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Sep 2010 20:02:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/feature-layer-zoom-in/m-p/149704#M3471</guid>
      <dc:creator>abukhan</dc:creator>
      <dc:date>2010-09-17T20:02:30Z</dc:date>
    </item>
    <item>
      <title>Re: feature layer zoom in</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/feature-layer-zoom-in/m-p/149705#M3472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;About the utility function :&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;GraphicUtil.getGeometries &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It extracts array of geometries from array of graphics &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there any way to get features that are outside and touching these geometries?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I mean if there are 20 geometries (of graphics), I want to get features that are outside the 20 geometries touching them...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Sep 2010 20:18:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/feature-layer-zoom-in/m-p/149705#M3472</guid>
      <dc:creator>abukhan</dc:creator>
      <dc:date>2010-09-17T20:18:12Z</dc:date>
    </item>
    <item>
      <title>Re: feature layer zoom in</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/feature-layer-zoom-in/m-p/149706#M3473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;One way I solved this issue using an boolean variable that I set initially and the updateend checks for this boolean variable (only does zooming in the first time)..&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Another option may be to remove the updateEnd listener.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Sep 2010 20:43:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/feature-layer-zoom-in/m-p/149706#M3473</guid>
      <dc:creator>DasaPaddock</dc:creator>
      <dc:date>2010-09-17T20:43:32Z</dc:date>
    </item>
    <item>
      <title>Re: feature layer zoom in</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/feature-layer-zoom-in/m-p/149707#M3474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;About the utility function :&lt;BR /&gt;&lt;BR /&gt;GraphicUtil.getGeometries &lt;BR /&gt;&lt;BR /&gt;It extracts array of geometries from array of graphics &lt;BR /&gt;&lt;BR /&gt;Is there any way to get features that are outside and touching these geometries?&lt;BR /&gt;I mean if there are 20 geometries (of graphics), I want to get features that are outside the 20 geometries touching them...&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;You may be able to do this using a geoprocessing task:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/tasks/Geoprocessor.html"&gt;http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/tasks/Geoprocessor.html&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Sep 2010 20:44:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/feature-layer-zoom-in/m-p/149707#M3474</guid>
      <dc:creator>DasaPaddock</dc:creator>
      <dc:date>2010-09-17T20:44:30Z</dc:date>
    </item>
  </channel>
</rss>

