<?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: AGSArcGISMapImageLayer and Identify in ArcGIS Runtime SDK for iOS Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72477#M707</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm creating my instance of of the layer using the portal id of the layer so I'm pretty sure it's only bringing over the right sublayers. I supposed I could sniff the requests through a proxy to be sure but I haven't done that yet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using returnPopupsOnly = false for my setup since I'm doing some custom stuff with the results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm wondering if I can work around it by getting the objectid and firing off a query task to get the results I want but that seems super hackish (not to mention slower).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help. I'll keep digging too and post back if something comes up.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Apr 2018 17:06:21 GMT</pubDate>
    <dc:creator>ToddAtkins</dc:creator>
    <dc:date>2018-04-16T17:06:21Z</dc:date>
    <item>
      <title>AGSArcGISMapImageLayer and Identify</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72473#M703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How does one execute an Identify task on an instance of AGSArcGISMapImageLayer? I've got a number of feature layers already on the map and running&amp;nbsp;identifyLayersAtScreenPoint:tolerance:returnPopupsOnly:maximumResultsPerLayer:completion:() works as expected, but returns no results for the&amp;nbsp;&lt;SPAN&gt;AGSArcGISMapImageLayer. In fact, the&amp;nbsp;AGSArcGISMapImageLayer shows isPopupEnabled = false. The layer source is Tapestry Segmentation layer from: &amp;nbsp;&lt;A class="link-titled" href="http://beitzanddaighgeo.maps.arcgis.com/home/item.html?id=eda0f20edc8448adaa3373cce237a57f" title="http://beitzanddaighgeo.maps.arcgis.com/home/item.html?id=eda0f20edc8448adaa3373cce237a57f"&gt;http://beitzanddaighgeo.maps.arcgis.com/home/item.html?id=eda0f20edc8448adaa3373cce237a57f&lt;/A&gt;&amp;nbsp;and the layer is rendered correctly on the map.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Likely I'm missing something here, but how does one setup an&amp;nbsp;AGSArcGISMapImageLayer so that it may be identified?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2018 14:06:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72473#M703</guid>
      <dc:creator>ToddAtkins</dc:creator>
      <dc:date>2018-04-16T14:06:24Z</dc:date>
    </item>
    <item>
      <title>Re: AGSArcGISMapImageLayer and Identify</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72474#M704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Todd,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Than you for your question! &amp;nbsp;The most likely scenario is that you &lt;STRONG&gt;are&lt;/STRONG&gt; getting results, but they are located in the &lt;EM&gt;sublayerResults&lt;/EM&gt; property of the &lt;EM&gt;AGSIdentifyLayerResult&lt;/EM&gt; object passed to you from the identify completion handler.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that elements in the&amp;nbsp;&lt;EM&gt;sublayerResults&lt;/EM&gt;&amp;nbsp;array property are&amp;nbsp;also of&amp;nbsp;type &lt;EM&gt;AGSIdentifyLayerResult&lt;/EM&gt;, so they may have objects in their &lt;EM&gt;sublayerResults&lt;/EM&gt; array as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are interested in only identifying layers in your&amp;nbsp;&lt;EM&gt;AGSArcGISMapImageLayer&lt;/EM&gt;, you can use one of the identify methods on &lt;EM&gt;AGSGeoView&lt;/EM&gt; which takes a specific layer, like this one:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;-(id&amp;lt;AGSCancelable&amp;gt;)identifyLayer:(AGSLayer*)layer&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;screenPoint:(CGPoint)screenPoint&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;tolerance:(double)tolerance&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;returnPopupsOnly:(BOOL)returnPopupsOnly&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;maximumResults:(NSInteger)maximumResults&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;completion:(void(^)(AGSIdentifyLayerResult *identifyResult))completion;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are not finding your results in the &lt;EM&gt;sublayerResults&lt;/EM&gt; array, let me know and we can dig into it further.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2018 15:36:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72474#M704</guid>
      <dc:creator>MarkDostal</dc:creator>
      <dc:date>2018-04-16T15:36:59Z</dc:date>
    </item>
    <item>
      <title>Re: AGSArcGISMapImageLayer and Identify</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72476#M706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm glad that works. &amp;nbsp;Are you specifying "returnPopupsOnly == true" in your "Identify" operation? &amp;nbsp;I'm not sure that makes a difference, but it would be good to know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, when I load the layer into a ArcGIS.com map, I see there are three different county layers. &amp;nbsp;All of them look like they have more attributes that what you're seeing, however. &amp;nbsp;Make sure you have the correct one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I couldn't find a way (yet) to programmatically specify which fields are returned for an Identify operation, but I will keep digging and keep you posted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2018 16:50:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72476#M706</guid>
      <dc:creator>MarkDostal</dc:creator>
      <dc:date>2018-04-16T16:50:08Z</dc:date>
    </item>
    <item>
      <title>Re: AGSArcGISMapImageLayer and Identify</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72477#M707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm creating my instance of of the layer using the portal id of the layer so I'm pretty sure it's only bringing over the right sublayers. I supposed I could sniff the requests through a proxy to be sure but I haven't done that yet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using returnPopupsOnly = false for my setup since I'm doing some custom stuff with the results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm wondering if I can work around it by getting the objectid and firing off a query task to get the results I want but that seems super hackish (not to mention slower).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help. I'll keep digging too and post back if something comes up.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2018 17:06:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72477#M707</guid>
      <dc:creator>ToddAtkins</dc:creator>
      <dc:date>2018-04-16T17:06:21Z</dc:date>
    </item>
    <item>
      <title>Re: AGSArcGISMapImageLayer and Identify</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72478#M708</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Followup:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I setup Charles proxy and watched the queries. They are being sent to the endpoint and executed properly and results are being returned that includes all the fields. But for some reason the API is stripping them down and only showing me &amp;nbsp;the 8 fields I noted in the original post. I'm lost at this point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image j-img-original" src="/legacyfs/online/401389_Screen Shot 2018-04-16 at 1.35.15 PM.png" style="width: 620px; height: 429px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2018 17:37:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72478#M708</guid>
      <dc:creator>ToddAtkins</dc:creator>
      <dc:date>2018-04-16T17:37:54Z</dc:date>
    </item>
    <item>
      <title>Re: AGSArcGISMapImageLayer and Identify</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72479#M709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the type of the feature you are looking at the attributes for? &amp;nbsp;If it is&amp;nbsp;&lt;/P&gt;&lt;P style="color: #000000; background-color: #ffffff; margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;EM&gt;AGSArcGISFeature&lt;/EM&gt;, then try loading the feature and then looking at the attributes.&lt;/P&gt;&lt;P style="color: #000000; background-color: #ffffff; margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;EM&gt;AGSArcGISFeature&lt;/EM&gt; implements the &lt;EM&gt;AGSLoadable&lt;/EM&gt; interface, so it's possible that not everything was downloaded yet.&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;In Swift, where &lt;EM&gt;f&lt;/EM&gt; is the feature:&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;/P&gt;&lt;P style="color: #000000; background-color: #ffffff; margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;f.&lt;SPAN style="color: #3495af;"&gt;load&lt;/SPAN&gt; { (error) &lt;SPAN style="color: #0433ff;"&gt;in&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #000000; background-color: #ffffff; margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //check attributes...&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #000000; background-color: #ffffff; margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;}&lt;/P&gt;&lt;P style="color: #000000; background-color: #ffffff; margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;Let me know if that works,&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2018 18:09:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72479#M709</guid>
      <dc:creator>MarkDostal</dc:creator>
      <dc:date>2018-04-16T18:09:54Z</dc:date>
    </item>
    <item>
      <title>Re: AGSArcGISMapImageLayer and Identify</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72480#M710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's an AGSGeoElement which I'm getting via identifyLayers(atScreenPoint:, tolerance:, returnPopupsOnly:, maximumResultsPerLayer:)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Relevant code where I tested the .load method:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;for subLayerResult in result.sublayerResults {
&amp;nbsp;&amp;nbsp;&amp;nbsp;for subElement in subLayerResult.geoElements {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;guard let f = subElement as? AGSArcGISFeature else {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return
&amp;nbsp;&amp;nbsp;&amp;nbsp;}
 
 &amp;nbsp;&amp;nbsp;&amp;nbsp;f.load(completion: { (error) in
 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;guard error == nil else {
 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;print("Error")
 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return
 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}
 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;print("f", f.attributes)
&amp;nbsp;&amp;nbsp;&amp;nbsp;})
 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;print(subElement.attributes)
&amp;nbsp;&amp;nbsp;&amp;nbsp;}
}&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 15:59:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72480#M710</guid>
      <dc:creator>ToddAtkins</dc:creator>
      <dc:date>2021-12-12T15:59:29Z</dc:date>
    </item>
    <item>
      <title>Re: AGSArcGISMapImageLayer and Identify</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72481#M711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Todd,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ok, thanks for the info. &amp;nbsp;I'm still looking into a solution...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2018 19:12:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72481#M711</guid>
      <dc:creator>MarkDostal</dc:creator>
      <dc:date>2018-04-16T19:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: AGSArcGISMapImageLayer and Identify</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72482#M712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Some further findings:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I swapped out the service for the USA Flood Risk Layer (arcgis.com/home/item.html?id=6b09b1c163c740559dc31cce9144222e) and it's returning all the attributes and everything seems to be in order. (I'll track down some more map image services to test and see how they fare.)&lt;/LI&gt;&lt;LI&gt;Going back to the Demographics (arcgis.com/home/item.html?id=eda0f20edc8448adaa3373cce237a57f) results in only the same 8 attributes being returned. I noticed, however, that this only worked &lt;EM&gt;once.&amp;nbsp;&lt;/EM&gt;Any subsequent attempts to do an identify on the layer results in an &amp;nbsp;application crash at ags_sqlite3_clear_bindings. Makes me wonder if the sheer number of fields in the demographics service is making the API choke? I'll be the first to admit I'm way out of my league when it comes to looking at&amp;nbsp;this particular error.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image j-img-original" src="/legacyfs/online/401574_Screen Shot 2018-04-16 at 3.14.01 PM.png" style="width: 620px; height: 345px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2018 19:16:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72482#M712</guid>
      <dc:creator>ToddAtkins</dc:creator>
      <dc:date>2018-04-16T19:16:39Z</dc:date>
    </item>
    <item>
      <title>Re: AGSArcGISMapImageLayer and Identify</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72483#M713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Todd,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the additional information. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will look into your crash and see if I can reproduce it. &amp;nbsp;One thing to try would be to add the "All C++ Exceptions" breakpoint and see if it hits that breakpoint during the identify operation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2018 19:49:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72483#M713</guid>
      <dc:creator>MarkDostal</dc:creator>
      <dc:date>2018-04-16T19:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: AGSArcGISMapImageLayer and Identify</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72484#M714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your help, Mark.&amp;nbsp;I set a breakpoint for All C++ Exceptions and it's not giving me any additional info than what I posted earlier--it's breaking at the same spot with the same exception.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2018 20:32:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72484#M714</guid>
      <dc:creator>ToddAtkins</dc:creator>
      <dc:date>2018-04-16T20:32:32Z</dc:date>
    </item>
    <item>
      <title>Re: AGSArcGISMapImageLayer and Identify</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72485#M715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Todd,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am able to reproduce the crash you reported and will pass it on to the appropriate people on the team. &amp;nbsp;In the meantime, I will see if there are any possible work-arounds.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your patience,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2018 21:25:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72485#M715</guid>
      <dc:creator>MarkDostal</dc:creator>
      <dc:date>2018-04-16T21:25:14Z</dc:date>
    </item>
    <item>
      <title>Re: AGSArcGISMapImageLayer and Identify</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72486#M716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mark, thank you very much for your time and help. I'm going to fiddle around with some ideas for a workaround on our end&amp;nbsp;as well.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2018 21:31:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72486#M716</guid>
      <dc:creator>ToddAtkins</dc:creator>
      <dc:date>2018-04-16T21:31:07Z</dc:date>
    </item>
    <item>
      <title>Re: AGSArcGISMapImageLayer and Identify</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72487#M717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Todd,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We've done some research on our end and found the issue is with the number of fields in the data. &amp;nbsp;The limit in the Runtime SDK is 2,000 fields. &amp;nbsp;The data you're using has more than that, which is causing the crash. &amp;nbsp;We are in the process of fixing that crash for our next release, but the real solution for you would be to architect the data to have less than 2k fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Question: &amp;nbsp;are you able to create and use hosted feature layers with your solution? &amp;nbsp;If so, you can take a look at this documentation (&lt;A class="link-titled" href="http://doc.arcgis.com/en/arcgis-online/manage-data/manage-hosted-feature-layers.htm#ESRI_SECTION1_D6E1538242B24908B1472154696905D3" title="http://doc.arcgis.com/en/arcgis-online/manage-data/manage-hosted-feature-layers.htm#ESRI_SECTION1_D6E1538242B24908B1472154696905D3"&gt;Manage hosted feature layers—ArcGIS Online Help | ArcGIS&lt;/A&gt;&amp;nbsp;), which will explain how to create a "view" where you define what fields (among other things) you want in your data. &amp;nbsp;This has the dual benefit only only bringing in the data you're interested in but also should be faster and prevent the crash.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you're not able to use hosted feature layers, let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2018 16:14:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72487#M717</guid>
      <dc:creator>MarkDostal</dc:creator>
      <dc:date>2018-05-22T16:14:26Z</dc:date>
    </item>
    <item>
      <title>Re: AGSArcGISMapImageLayer and Identify</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72488#M718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mark thanks for the follow up. Unfortunately we cannot create a feature&lt;/P&gt;&lt;P&gt;view for this layer since it is a Dynamic Map service and one of the Esri&lt;/P&gt;&lt;P&gt;Premium Living Atlas layers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To work around the issue for now, we've created a service in our own AGOL&lt;/P&gt;&lt;P&gt;with the geometry and fields we're trying to use. It works, however it&lt;/P&gt;&lt;P&gt;isn't ideal since it's disconnected from Esri's authoritative data thus&lt;/P&gt;&lt;P&gt;updates require a manual process on our end. It's also a Feature Service&lt;/P&gt;&lt;P&gt;where we'd ideally like to use a Dynamic Map service for the sake of speed.&lt;/P&gt;&lt;P&gt;Plus, we'd obviously prefer not to spend credits on essentially duplicating&lt;/P&gt;&lt;P&gt;an ready-to-go layer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looking forward to trying it out in the next release though and seeing how&lt;/P&gt;&lt;P&gt;it goes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Todd&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2018 16:38:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72488#M718</guid>
      <dc:creator>ToddAtkins</dc:creator>
      <dc:date>2018-05-22T16:38:29Z</dc:date>
    </item>
    <item>
      <title>Re: AGSArcGISMapImageLayer and Identify</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72475#M705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mark, thanks for the info and that did the trick!&amp;nbsp;I totally missed that in the docs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One followup: the id result is only returning a handful of fields (example below) from the service when there are probably close 1,000 or more defined. Is there a way to specify additional fields to return?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;{
 AREA = "581.277560472";
 ID = 05133;
 NAME = "Sevier County";
 OBJECTID = 178;
 "ST_ABBREV" = AR;
 "ST_NAME" = Arkansas;
 "Shape_Area" = "2195854296.001275";
 "Shape_Length" = "305710.4212080084";
}&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 15:59:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsarcgismapimagelayer-and-identify/m-p/72475#M705</guid>
      <dc:creator>ToddAtkins</dc:creator>
      <dc:date>2021-12-12T15:59:26Z</dc:date>
    </item>
  </channel>
</rss>

