<?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: Cant identify on Feature Layer  in ArcGIS AppStudio Questions</title>
    <link>https://community.esri.com/t5/arcgis-appstudio-questions/cant-identify-on-feature-layer/m-p/833887#M2364</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. Webmap sample lets you identify layers within the webmap which can feature layer of map image layer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It appears to me what you are looking to do is to identify feature layer within a map (not webmap). If yes, then here is a sample available from ArcGIS Runtime Qt/QML team works pretty much the same way, just you need to see if you are identifying a layer or a sublayer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Esri/arcgis-runtime-samples-qt/blob/master/ArcGISRuntimeSDKQt_QMLSamples/Maps/IdentifyLayers/IdentifyLayers.qml"&gt;https://github.com/Esri/arcgis-runtime-samples-qt/blob/master/ArcGISRuntimeSDKQt_QMLSamples/Maps/IdentifyLayers/IdentifyLayers.qml&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;/P&gt;&lt;P&gt;Nakul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 Jun 2019 21:24:34 GMT</pubDate>
    <dc:creator>nakulmanocha</dc:creator>
    <dc:date>2019-06-24T21:24:34Z</dc:date>
    <item>
      <title>Cant identify on Feature Layer</title>
      <link>https://community.esri.com/t5/arcgis-appstudio-questions/cant-identify-on-feature-layer/m-p/833884#M2361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using the Web Map template in AppStudio.&amp;nbsp; The third sample in this template is "We Map Identify"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I update the MAP section as seen below but the feature layer does not identify....Am I missing something????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this .qml file is this code that seems to allow for the identify of a Feature Layer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;        &lt;SPAN class="comment token"&gt;// Signal handler for identify&lt;/SPAN&gt;
        onIdentifyLayersStatusChanged&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
            &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;identifyLayersStatus &lt;SPAN class="operator token"&gt;===&lt;/SPAN&gt; Enums&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;TaskStatusCompleted&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;//SNIP OUT ALL THE CODE ABOVE TO MAKE SHORTER&lt;/SPAN&gt;

                    &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;else&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
                        &lt;SPAN class="comment token"&gt;// Results are from Feature Layer&lt;/SPAN&gt;
                        &lt;SPAN class="comment token"&gt;// iterate through individual features of the feature Layer results&lt;/SPAN&gt;
                        &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; f &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt; f &lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt; identifyLayerResult&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;popups&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;length&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt; f&lt;SPAN class="operator token"&gt;++&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
                            popup &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; identifyLayerResult&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;popups&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;f&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
                            selectedFeature &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; popup&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;geoElement&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
                            popupDef &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; popup&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;popupDefinition&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
                            &lt;SPAN class="comment token"&gt;// Appending the result to the model                            &lt;/SPAN&gt;
                            newPopup &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; ArcGISRuntimeEnvironment&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;createObject&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Popup"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
                                                                                 initGeoElement&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; selectedFeature&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
                                                                                 initPopupDefinition&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; popupDef
                                                                             &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

                            &lt;SPAN class="comment token"&gt;// create a popup manager&lt;/SPAN&gt;
                            newPopupManager &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; ArcGISRuntimeEnvironment&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;createObject&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"PopupManager"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;popup&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; newPopup&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
                            popupListModel&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;append&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'popupManager'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; newPopupManager&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
                        &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
                    &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;

                &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I updated the MAP section to this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;        Map&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
            initUrl&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"http://arcgis.com/sharing/rest/content/items/8ccfcc3a83d241ce9765ff4aea459617"&lt;/SPAN&gt;
            &lt;SPAN class="comment token"&gt;//initUrl: "https://vafwisdev.dgif.virginia.gov/arcgis/rest/services/DGIF_Test/BoatRampFacilities/FeatureServer/0"&lt;/SPAN&gt;

            FeatureLayer &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
                ServiceFeatureTable &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
                   url&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"http://sampleserver6.arcgisonline.com/arcgis/rest/services/SF311/FeatureServer/0"&lt;/SPAN&gt;
                   &lt;SPAN class="comment token"&gt;//featureRequestMode: Enums.FeatureRequestModeOnInteractionNoCache&lt;/SPAN&gt;
                &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
            &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
            onLoadErrorChanged&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
                console&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;log&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;mapView&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;map&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;loadError&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;additionalMessage&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
            &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
        &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 10:06:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-appstudio-questions/cant-identify-on-feature-layer/m-p/833884#M2361</guid>
      <dc:creator>jaykapalczynski</dc:creator>
      <dc:date>2021-12-12T10:06:06Z</dc:date>
    </item>
    <item>
      <title>Re: Cant identify on Feature Layer</title>
      <link>https://community.esri.com/t5/arcgis-appstudio-questions/cant-identify-on-feature-layer/m-p/833885#M2362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;or better yet....using a basemap and the feature layer....still cant identify.....anyone have any thoughts?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;        Map&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
            BasemapTopographic &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;

            FeatureLayer &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
                ServiceFeatureTable &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
                   url&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"http://sampleserver6.arcgisonline.com/arcgis/rest/services/SF311/FeatureServer/0"&lt;/SPAN&gt;
                   &lt;SPAN class="comment token"&gt;//featureRequestMode: Enums.FeatureRequestModeOnInteractionNoCache&lt;/SPAN&gt;
                &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
            &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
            onLoadErrorChanged&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
                console&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;log&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;mapView&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;map&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;loadError&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;additionalMessage&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
            &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
        &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 10:06:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-appstudio-questions/cant-identify-on-feature-layer/m-p/833885#M2362</guid>
      <dc:creator>jaykapalczynski</dc:creator>
      <dc:date>2021-12-12T10:06:08Z</dc:date>
    </item>
    <item>
      <title>Re: Cant identify on Feature Layer</title>
      <link>https://community.esri.com/t5/arcgis-appstudio-questions/cant-identify-on-feature-layer/m-p/833886#M2363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there an identify on a Feature Layer Example?&amp;nbsp; Can I do this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jun 2019 18:42:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-appstudio-questions/cant-identify-on-feature-layer/m-p/833886#M2363</guid>
      <dc:creator>jaykapalczynski</dc:creator>
      <dc:date>2019-06-12T18:42:29Z</dc:date>
    </item>
    <item>
      <title>Re: Cant identify on Feature Layer</title>
      <link>https://community.esri.com/t5/arcgis-appstudio-questions/cant-identify-on-feature-layer/m-p/833887#M2364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. Webmap sample lets you identify layers within the webmap which can feature layer of map image layer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It appears to me what you are looking to do is to identify feature layer within a map (not webmap). If yes, then here is a sample available from ArcGIS Runtime Qt/QML team works pretty much the same way, just you need to see if you are identifying a layer or a sublayer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Esri/arcgis-runtime-samples-qt/blob/master/ArcGISRuntimeSDKQt_QMLSamples/Maps/IdentifyLayers/IdentifyLayers.qml"&gt;https://github.com/Esri/arcgis-runtime-samples-qt/blob/master/ArcGISRuntimeSDKQt_QMLSamples/Maps/IdentifyLayers/IdentifyLayers.qml&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;/P&gt;&lt;P&gt;Nakul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Jun 2019 21:24:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-appstudio-questions/cant-identify-on-feature-layer/m-p/833887#M2364</guid>
      <dc:creator>nakulmanocha</dc:creator>
      <dc:date>2019-06-24T21:24:34Z</dc:date>
    </item>
    <item>
      <title>Re: Cant identify on Feature Layer</title>
      <link>https://community.esri.com/t5/arcgis-appstudio-questions/cant-identify-on-feature-layer/m-p/833888#M2365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks...my main issue is getting at the other attributes....&amp;nbsp; I cant seem to get to them....I tried 3 or 4 opther ways but keep getting Error: Undefined.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;SPAN style="color: #c0c0c0;"&gt;            &lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;//&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;loop&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;through&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;the&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;results&lt;/SPAN&gt;&lt;/PRE&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;SPAN style="color: #808080;"&gt;            var results = mapView.identifyLayersResults;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;SPAN style="color: #808080;"&gt;            for (var i = 0; i &amp;lt; results.length; i++) {&lt;/SPAN&gt;&lt;/PRE&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;SPAN style="color: #808080;"&gt;                var result = results&lt;I&gt;;&lt;/I&gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;SPAN style="color: #808080;"&gt;                var count = geoElementsCountFromResult(result);&lt;/SPAN&gt;&lt;/PRE&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;SPAN style="color: #808080;"&gt;                var layerName = result.layerContent.name;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;STRONG&gt;&lt;SPAN style="color: #c0c0c0;"&gt;                &lt;/SPAN&gt;&lt;SPAN style="color: #808000;"&gt;var&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #2985c7;"&gt;etst&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;=&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #2985c7;"&gt;result&lt;/SPAN&gt;.attributes.attributeValue(&lt;SPAN style="color: #008000;"&gt;"inspector"&lt;/SPAN&gt;);&lt;/STRONG&gt;


&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 16:59:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-appstudio-questions/cant-identify-on-feature-layer/m-p/833888#M2365</guid>
      <dc:creator>jaykapalczynski</dc:creator>
      <dc:date>2021-12-12T16:59:01Z</dc:date>
    </item>
    <item>
      <title>Re: Cant identify on Feature Layer</title>
      <link>https://community.esri.com/t5/arcgis-appstudio-questions/cant-identify-on-feature-layer/m-p/833889#M2366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your case, result is of type IdentifyLayerResult. IdentifyLayerResult doesn't have a property called attributes. You need to get to the geoElements first. And then read the attributes from the specific geoElement using the attributes property which will return you the AttributeListModel. You also need to check if the IdentifyLayerResult has any sublayers if you happen to have the MapImageLayer instead of a Feature Layer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/qt/latest/qml/api-reference/qml-esri-arcgisruntime-identifylayerresult.html"&gt;https://developers.arcgis.com/qt/latest/qml/api-reference/qml-esri-arcgisruntime-identifylayerresult.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/qt/latest/qml/api-reference/qml-esri-arcgisruntime-feature.html#attributes-prop"&gt;https://developers.arcgis.com/qt/latest/qml/api-reference/qml-esri-arcgisruntime-feature.html#attributes-prop&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jun 2019 18:09:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-appstudio-questions/cant-identify-on-feature-layer/m-p/833889#M2366</guid>
      <dc:creator>nakulmanocha</dc:creator>
      <dc:date>2019-06-25T18:09:48Z</dc:date>
    </item>
  </channel>
</rss>

