<?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 not showing all features in ArcGIS Runtime SDK for iOS Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-not-showing-all-features/m-p/176889#M1639</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The setting affects any query performed against the service.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you set the initial extent of the map such that it contains only 500 features, you'll get to see all of them. But if you zoom out later to an extent that, say, contains 3000 features, you will only see the *first* n features (where n is the 'max record count' property of the service)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Apr 2011 17:31:27 GMT</pubDate>
    <dc:creator>DiveshGoyal</dc:creator>
    <dc:date>2011-04-25T17:31:27Z</dc:date>
    <item>
      <title>Feature Layer not showing all features</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-not-showing-all-features/m-p/176883#M1633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I setup a iOS service with an operational layer and a basemap layer.&amp;nbsp; The operational layer only shows a portion of the data in the feature layer.&amp;nbsp; Is there a limit on the number of features the ArcGIS for iOS app can handle?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The feature layer has approximatey 2200 records in it and is only showing around 900, maybe 1000.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The service appears OK if I pull into ArcMap.&amp;nbsp; But then again, I don't know if ArcMap pulls in the MapServer or the FeatureServer service.&amp;nbsp; Whereas the arcGIS for iOS specifies the FeatureService.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any assistance on this would be great.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Apr 2011 15:12:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-not-showing-all-features/m-p/176883#M1633</guid>
      <dc:creator>KeithNightlinger</dc:creator>
      <dc:date>2011-04-19T15:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Layer not showing all features</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-not-showing-all-features/m-p/176884#M1634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you have initialized your feature layer in SnapShot mode, it retrieves only about 1000 at at time. You may try replacing that with &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;AGSFeatureLayer* featureLayer = [AGSFeatureLayer featureServiceLayerWithURL: url mode: &lt;/SPAN&gt;&lt;STRONG&gt;AGSFeatureLayerModeOnDemand&lt;/STRONG&gt;&lt;SPAN&gt;];&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This link might help: &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/arcgismobile/10.0/apis/iPhone/concepts/index.html#/ArcGIS_Feature_Layer/00pw0000004s000000/"&gt;http://help.arcgis.com/en/arcgismobile/10.0/apis/iPhone/concepts/index.html#/ArcGIS_Feature_Layer/00pw0000004s000000/&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Apr 2011 17:14:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-not-showing-all-features/m-p/176884#M1634</guid>
      <dc:creator>SuganyaBaskaran</dc:creator>
      <dc:date>2011-04-19T17:14:40Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Layer not showing all features</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-not-showing-all-features/m-p/176885#M1635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Even in OnDemand mode, the number of feature retrieved will be limited by the 'max record count' property of the service (For instance, the map could load at a scale at which the feature layer might try to fetch all its features in the service and run into this max limit)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You could try bumping up the 'max record count' property on the service to work around this issue.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Apr 2011 17:33:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-not-showing-all-features/m-p/176885#M1635</guid>
      <dc:creator>DiveshGoyal</dc:creator>
      <dc:date>2011-04-19T17:33:33Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Layer not showing all features</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-not-showing-all-features/m-p/176886#M1636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I bumped up the feature limit count and it works, although this is a pilot layer with a subset of the features, the original layer has 220,000 features in it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The on demand mode might be able to work as well, however it appears that can only be set when programming an app, I am using the ArcGIS for iOS app and I don't beleive there is an equivelent setting in there.&amp;nbsp; Thanks for the help though.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Apr 2011 18:33:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-not-showing-all-features/m-p/176886#M1636</guid>
      <dc:creator>KeithNightlinger</dc:creator>
      <dc:date>2011-04-19T18:33:35Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Layer not showing all features</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-not-showing-all-features/m-p/176887#M1637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The ArcGIS for iOS app already uses OnDemand mode for feature layers.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2011 16:43:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-not-showing-all-features/m-p/176887#M1637</guid>
      <dc:creator>DiveshGoyal</dc:creator>
      <dc:date>2011-04-20T16:43:37Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Layer not showing all features</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-not-showing-all-features/m-p/176888#M1638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;OK, well that's good to know.&amp;nbsp; Does the "Maximum Records Returned by Server" setting, choose which features to return at the time of service start, or by the request of the client?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Essentially, would I be able to keep the default setting at 1000 features and set a scale threshold that would effectively limit the amount of records getting returned, or does the server choose the 1000 features when the service is created?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Apr 2011 12:54:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-not-showing-all-features/m-p/176888#M1638</guid>
      <dc:creator>KeithNightlinger</dc:creator>
      <dc:date>2011-04-25T12:54:13Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Layer not showing all features</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-not-showing-all-features/m-p/176889#M1639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The setting affects any query performed against the service.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you set the initial extent of the map such that it contains only 500 features, you'll get to see all of them. But if you zoom out later to an extent that, say, contains 3000 features, you will only see the *first* n features (where n is the 'max record count' property of the service)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Apr 2011 17:31:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-not-showing-all-features/m-p/176889#M1639</guid>
      <dc:creator>DiveshGoyal</dc:creator>
      <dc:date>2011-04-25T17:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Layer not showing all features</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-not-showing-all-features/m-p/176890#M1640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've had the same problem with flex, it's a limit to the quering, which ties to trying to speed up results... I created a bypass, by looping through queries, going with the max 500 points, i query the object id's &amp;lt; 500, and then continue to query, each time increasing by another 500... i loop through these results until the result count is 0... if you add up all those results, you get all the features.. of course, this is done with queries, and is not tied to featurelayer.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 May 2011 16:54:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-not-showing-all-features/m-p/176890#M1640</guid>
      <dc:creator>GregSpiridonov</dc:creator>
      <dc:date>2011-05-17T16:54:57Z</dc:date>
    </item>
  </channel>
</rss>

