<?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: IdentifyTask in API 4.6 trouble finding feature geometry in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/identifytask-in-api-4-6-trouble-finding-feature/m-p/382635#M35486</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lori,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Your issue is mis-punctuation of the property name the g has to be upper case&lt;/P&gt;&lt;P&gt;&lt;STRONG style="background-color: #ffffff; border: 0px; font-weight: bold; font-size: 14px;"&gt;params.returnGeometry = true;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Jan 2018 21:01:08 GMT</pubDate>
    <dc:creator>RobertScheitlin__GISP</dc:creator>
    <dc:date>2018-01-11T21:01:08Z</dc:date>
    <item>
      <title>IdentifyTask in API 4.6 trouble finding feature geometry</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/identifytask-in-api-4-6-trouble-finding-feature/m-p/382632#M35483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to access the feature geometry when using the IdentifyTask in the JavaScript API 4.6 so that I can add a graphic to my point feature.&lt;/P&gt;&lt;P&gt;I am using the Sample located at &lt;A href="https://developers.arcgis.com/javascript/latest/sample-code/tasks-identify/"&gt;https://developers.arcgis.com/javascript/latest/sample-code/tasks-identify/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I added a line&lt;/P&gt;&lt;P&gt;var mp = result.feature.geometry;&lt;/P&gt;&lt;P&gt;but the geometry is null.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: helvetica,arial,sans-serif; text-decoration: underline;"&gt;Here is part of the code:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;// Executes each time the view is clicked&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;function&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; executeIdentifyTask(event) {&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000; font-size: small; font-family: Consolas;"&gt;// Set the geometry to the location of the view click&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;alert (event.mapPoint.x);&lt;/P&gt;&lt;P&gt;params.geometry = event.mapPoint;&lt;/P&gt;&lt;P&gt;params.mapExtent = view.extent;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; dom.byId(&lt;/SPAN&gt;&lt;SPAN style="color: #a31515; font-size: small; font-family: Consolas;"&gt;"viewDiv"&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt;).style.cursor = &lt;/SPAN&gt;&lt;SPAN style="color: #a31515; font-size: small; font-family: Consolas;"&gt;"wait"&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000; font-size: small; font-family: Consolas;"&gt;// This function returns a promise that resolves to an array of features&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000; font-size: small; font-family: Consolas;"&gt;// A custom popupTemplate is set for each feature based on the layer it&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000; font-size: small; font-family: Consolas;"&gt;// originates from&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; identifyTask.execute(params).then(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;function&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt;(response) {&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;var&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; results = response.results;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;return&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; arrayUtils.map(results, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;function&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt;(result) {&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;var&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; feature = result.feature;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;var&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; layerName = result.layerName;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #ff00ff;"&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt;var&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; mp = result.feature.geometry;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 15px; text-decoration: underline;"&gt;&lt;SPAN&gt;&lt;SPAN&gt;End of the code&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 15px; text-decoration: underline;"&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;Here is what the result object looks like in 4.6.&amp;nbsp; How do I find the geometry?&amp;nbsp; The "_proto_" and "_accessor_" make it difficult to find anything.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;IMG alt="Result Object in JavaScript API 4.6" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/392637_ResultObject.png" style="width: 620px; height: 320px;" /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jan 2018 22:58:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/identifytask-in-api-4-6-trouble-finding-feature/m-p/382632#M35483</guid>
      <dc:creator>LoriEmerson_McCormack</dc:creator>
      <dc:date>2018-01-10T22:58:15Z</dc:date>
    </item>
    <item>
      <title>Re: IdentifyTask in API 4.6 trouble finding feature geometry</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/identifytask-in-api-4-6-trouble-finding-feature/m-p/382633#M35484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lori,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;I do not see in your code where you specify the returnGeometry property of the IdentifyParameters.&lt;/P&gt;&lt;P&gt;&lt;A class="link-bare" href="https://developers.arcgis.com/javascript/latest/api-reference/esri-tasks-support-IdentifyParameters.html#returnGeometry" title="https://developers.arcgis.com/javascript/latest/api-reference/esri-tasks-support-IdentifyParameters.html#returnGeometry"&gt;https://developers.arcgis.com/javascript/latest/api-reference/esri-tasks-support-IdentifyParameters.html#returnGeometry&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jan 2018 13:52:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/identifytask-in-api-4-6-trouble-finding-feature/m-p/382633#M35484</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-01-11T13:52:34Z</dc:date>
    </item>
    <item>
      <title>Re: IdentifyTask in API 4.6 trouble finding feature geometry</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/identifytask-in-api-4-6-trouble-finding-feature/m-p/382634#M35485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;BR /&gt;&amp;lt;html&amp;gt;&lt;BR /&gt;&amp;lt;head&amp;gt;&lt;BR /&gt; &amp;lt;meta charset="utf-8"&amp;gt;&lt;BR /&gt; &amp;lt;meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no"&amp;gt;&lt;BR /&gt; &amp;lt;title&amp;gt;IdentifyTask - 4.6&amp;lt;/title&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;style&amp;gt;&lt;BR /&gt; html,&lt;BR /&gt; body,&lt;BR /&gt; #viewDiv {&lt;BR /&gt; padding: 0;&lt;BR /&gt; margin: 0;&lt;BR /&gt; height: 100%;&lt;BR /&gt; width: 100%;&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;.esri-popup .esri-popup-header .esri-title {&lt;BR /&gt; font-size: 18px;&lt;BR /&gt; font-weight: bolder;&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;.esri-popup .esri-popup-body .esri-popup-content {&lt;BR /&gt; font-size: 14px;&lt;BR /&gt; }&lt;BR /&gt; &amp;lt;/style&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;lt;link rel="stylesheet" href="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fjs.arcgis.com%2F4.6%2Fesri%2Fcss%2Fmain.css" rel="nofollow" target="_blank"&gt;https://js.arcgis.com/4.6/esri/css/main.css&lt;/A&gt;&lt;SPAN&gt;"&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;lt;script src="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fjs.arcgis.com%2F4.6%2F" rel="nofollow" target="_blank"&gt;https://js.arcgis.com/4.6/&lt;/A&gt;&lt;SPAN&gt;"&amp;gt;&amp;lt;/script&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;script&amp;gt;&lt;BR /&gt; require([&lt;BR /&gt; "esri/Map",&lt;BR /&gt; "esri/views/MapView",&lt;BR /&gt; "esri/layers/TileLayer",&lt;BR /&gt; "esri/tasks/IdentifyTask",&lt;BR /&gt; "esri/tasks/support/IdentifyParameters",&lt;BR /&gt; "dojo/_base/array",&lt;BR /&gt; "dojo/on",&lt;BR /&gt; "dojo/dom",&lt;BR /&gt; "dojo/domReady!"&lt;BR /&gt; ], function(&lt;BR /&gt; Map, MapView, TileLayer,&lt;BR /&gt; IdentifyTask, IdentifyParameters,&lt;BR /&gt; arrayUtils, on, dom&lt;BR /&gt; ) {&lt;/P&gt;&lt;P&gt;var identifyTask, params;&lt;/P&gt;&lt;P&gt;// URL to the map service where the identify will be performed&lt;BR /&gt; var soilURL =&lt;BR /&gt;&lt;SPAN&gt; "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fservices.arcgisonline.com%2Farcgis%2Frest%2Fservices%2FSpecialty%2FSoil_Survey_Map%2FMapServer" rel="nofollow" target="_blank"&gt;https://services.arcgisonline.com/arcgis/rest/services/Specialty/Soil_Survey_Map/MapServer&lt;/A&gt;&lt;SPAN&gt;";&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;// Add the map service as a TileLayer for fast rendering&lt;BR /&gt; // Tile layers are composed of non-interactive images. For that reason we'll&lt;BR /&gt; // use IdentifyTask to query the service to add interactivity to the app&lt;BR /&gt; var parcelsLyr = new TileLayer({&lt;BR /&gt; url: soilURL,&lt;BR /&gt; opacity: 0.85&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;var map = new Map({&lt;BR /&gt; basemap: "osm"&lt;BR /&gt; });&lt;BR /&gt; map.add(parcelsLyr);&lt;/P&gt;&lt;P&gt;var view = new MapView({&lt;BR /&gt; map: map,&lt;BR /&gt; container: "viewDiv",&lt;BR /&gt; center: [-120.174, 47.255],&lt;BR /&gt; zoom: 7&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;view.when(function() {&lt;BR /&gt; // executeIdentifyTask() is called each time the view is clicked&lt;BR /&gt; on(view, "click", executeIdentifyTask);&lt;/P&gt;&lt;P&gt;// Create identify task for the specified map service&lt;BR /&gt; identifyTask = new IdentifyTask(soilURL);&lt;/P&gt;&lt;P&gt;// Set the parameters for the Identify&lt;BR /&gt; params = new IdentifyParameters();&lt;BR /&gt; params.tolerance = 3;&lt;BR /&gt; params.layerIds = [0, 1, 2];&lt;BR /&gt; params.layerOption = "visible";&lt;BR /&gt; params.width = view.width;&lt;BR /&gt; params.height = view.height;&lt;BR /&gt; &lt;STRONG&gt;params.returngeometry = true;&lt;/STRONG&gt;&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;// Executes each time the view is clicked&lt;BR /&gt; function executeIdentifyTask(event) {&lt;BR /&gt; // Set the geometry to the location of the view click&lt;/P&gt;&lt;P&gt;alert (event.mapPoint.x);&lt;BR /&gt; params.geometry = event.mapPoint;&lt;BR /&gt; params.mapExtent = view.extent;&lt;BR /&gt; dom.byId("viewDiv").style.cursor = "wait";&lt;/P&gt;&lt;P&gt;// This function returns a promise that resolves to an array of features&lt;BR /&gt; // A custom popupTemplate is set for each feature based on the layer it&lt;BR /&gt; // originates from&lt;BR /&gt; identifyTask.execute(params).then(function(response) {&lt;/P&gt;&lt;P&gt;var results = response.results;&lt;/P&gt;&lt;P&gt;return arrayUtils.map(results, function(result) {&lt;/P&gt;&lt;P&gt;var feature = result.feature;&lt;BR /&gt; var layerName = result.layerName;&lt;BR /&gt; &lt;STRONG&gt;var mp = result.feature.geometry; // this is null&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;feature.attributes.layerName = layerName;&lt;BR /&gt; if (layerName === 'Soil Survey Geographic') {&lt;BR /&gt; feature.popupTemplate = { // autocasts as new PopupTemplate()&lt;BR /&gt; title: "{Map Unit Name}",&lt;BR /&gt; content: "&amp;lt;b&amp;gt;Dominant order:&amp;lt;/b&amp;gt; {Dominant Order} ({Dom. Cond. Order %}%)" +&lt;BR /&gt; "&amp;lt;br&amp;gt;&amp;lt;b&amp;gt;Dominant sub-order:&amp;lt;/b&amp;gt; {Dominant Sub-Order} ({Dom. Cond. Suborder %}%)" +&lt;BR /&gt; "&amp;lt;br&amp;gt;&amp;lt;b&amp;gt;Dominant Drainage Class:&amp;lt;/b&amp;gt; {Dom. Cond. Drainage Class} ({Dom. Cond. Drainage Class %}%)" +&lt;BR /&gt; "&amp;lt;br&amp;gt;&amp;lt;b&amp;gt;Farmland Class:&amp;lt;/b&amp;gt; {Farmland Class}"&lt;BR /&gt; };&lt;BR /&gt; }&lt;BR /&gt; else if (layerName === 'State Soil Geographic') {&lt;BR /&gt; feature.popupTemplate = { // autocasts as new PopupTemplate()&lt;BR /&gt; title: "{Map Unit Name}",&lt;BR /&gt; content: "&amp;lt;b&amp;gt;Dominant order:&amp;lt;/b&amp;gt; {Dominant Order} ({Dominant %}%)" +&lt;BR /&gt; "&amp;lt;br&amp;gt;&amp;lt;b&amp;gt;Dominant sub-order:&amp;lt;/b&amp;gt; {Dominant Sub-Order} ({Dominant Sub-Order %}%)"&lt;BR /&gt; };&lt;BR /&gt; }&lt;BR /&gt; else if (layerName === 'Global Soil Regions') {&lt;BR /&gt; feature.popupTemplate = { // autocasts as new PopupTemplate()&lt;BR /&gt; title: layerName,&lt;BR /&gt; content: "&amp;lt;b&amp;gt;Dominant order:&amp;lt;/b&amp;gt; {Dominant Order}" +&lt;BR /&gt; "&amp;lt;br&amp;gt;&amp;lt;b&amp;gt;Dominant sub-order:&amp;lt;/b&amp;gt; {Dominant Sub-Order}"&lt;BR /&gt; };&lt;BR /&gt; }&lt;BR /&gt; return feature;&lt;BR /&gt; });&lt;BR /&gt; }).then(showPopup); // Send the array of features to showPopup()&lt;/P&gt;&lt;P&gt;// Shows the results of the Identify in a popup once the promise is resolved&lt;BR /&gt; function showPopup(response) {&lt;BR /&gt; if (response.length &amp;gt; 0) {&lt;BR /&gt; view.popup.open({&lt;BR /&gt; features: response,&lt;BR /&gt; location: event.mapPoint&lt;BR /&gt; });&lt;BR /&gt; }&lt;BR /&gt; dom.byId("viewDiv").style.cursor = "auto";&lt;BR /&gt; }&lt;BR /&gt; }&lt;BR /&gt; });&lt;BR /&gt; &amp;lt;/script&amp;gt;&lt;BR /&gt;&amp;lt;/head&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;body&amp;gt;&lt;BR /&gt; &amp;lt;div id="viewDiv"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/body&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/html&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jan 2018 20:33:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/identifytask-in-api-4-6-trouble-finding-feature/m-p/382634#M35485</guid>
      <dc:creator>LoriEmerson_McCormack</dc:creator>
      <dc:date>2018-01-11T20:33:23Z</dc:date>
    </item>
    <item>
      <title>Re: IdentifyTask in API 4.6 trouble finding feature geometry</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/identifytask-in-api-4-6-trouble-finding-feature/m-p/382635#M35486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lori,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Your issue is mis-punctuation of the property name the g has to be upper case&lt;/P&gt;&lt;P&gt;&lt;STRONG style="background-color: #ffffff; border: 0px; font-weight: bold; font-size: 14px;"&gt;params.returnGeometry = true;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jan 2018 21:01:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/identifytask-in-api-4-6-trouble-finding-feature/m-p/382635#M35486</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-01-11T21:01:08Z</dc:date>
    </item>
    <item>
      <title>Re: IdentifyTask in API 4.6 trouble finding feature geometry</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/identifytask-in-api-4-6-trouble-finding-feature/m-p/382636#M35487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Silly me.&amp;nbsp; Thanks, Robert.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jan 2018 21:27:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/identifytask-in-api-4-6-trouble-finding-feature/m-p/382636#M35487</guid>
      <dc:creator>LoriEmerson_McCormack</dc:creator>
      <dc:date>2018-01-11T21:27:05Z</dc:date>
    </item>
  </channel>
</rss>

