<?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: Equivalent of &amp;quot;Select Features&amp;quot; and &amp;quot;Map Graphics&amp;quot; in Javascript 4 in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35203#M2901</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That explains a lot of things!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Last question, to your second answer, let's say I want to add a graphics on top of features of an MapImageLayer based on a list of OBJECTIDs&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would make a query filtering by those OBJECTIDs, return geometry, and then loop through the returned geometries to get their coordinates, so them I can add graphics to those coordinates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is that it or there is a simpler way?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 May 2017 19:09:28 GMT</pubDate>
    <dc:creator>SamuelAbati</dc:creator>
    <dc:date>2017-05-03T19:09:28Z</dc:date>
    <item>
      <title>Equivalent of "Select Features" and "Map Graphics" in Javascript 4</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35199#M2897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm trying to migrate a webapp that was under development in the 3.7 API to use the 4.3 API&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The base functionality of the app was that when the user would hold CTRL to click a point feature, it would make a SELECTION_ADD, selecting multiple features.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also another functionality I can't find is changing the renderer/color of specific features, before I would go into the map graphics and change them directly (although I've found that wasn't the best way), now I'm not sure anymore&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Everything gets even harder because I'm not working with FeatureLayer anymore, but instead a WebMap (which is a MapImageLayer)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the end, my questions sum up to:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) How to "select features" in a MapImageLayer/SubLayer, or any equivalent to getting the OBJECTID of a clicked feature.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) How to change the renderer/color of specific features only, in this case would be the clicked features, but there is another case that is through a list of OBJECTIDs, (I believe this could be done by adding graphics on top of the features too, that would be no problem since my app is only for display purposes)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In 3.7 I used the layers events "click" and "selection-complete" to handle the logic, are these events no longer part of the flow of 4.X apps?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help as to where start or links to examples would be appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 May 2017 18:22:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35199#M2897</guid>
      <dc:creator>SamuelAbati</dc:creator>
      <dc:date>2017-05-03T18:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent of "Select Features" and "Map Graphics" in Javascript 4</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35200#M2898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Samuel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. In the 4.x API you use View.hitTest to get the graphic that is&amp;nbsp;intersected by the user click:&lt;/P&gt;&lt;P&gt;&lt;A class="link-bare" href="https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html#hitTest" title="https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html#hitTest" rel="nofollow noopener noreferrer" target="_blank"&gt;https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html#hitTest&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If your view click could intersect more than one geometry and you want all intersected geometries then you would do something like this:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;view&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;on&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"click"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;function&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;event&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
 &lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; query &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;new&lt;/SPAN&gt; &lt;SPAN class="token class-name"&gt;Query&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;
 query&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;geometry &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; event&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mapPoint&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
 query&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;spatialRelationship &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"intersects"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
 lyrView&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;queryFeatures&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;query&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;then&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;function&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;results&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="comment token"&gt;//do something with the results&lt;/SPAN&gt;
&amp;nbsp; &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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;2. You add a graphic to a GraphicsLayer or the maps graphics (GraphicsLayer) and set the graphics symbol to your desired selection symbol.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 21:22:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35200#M2898</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-10T21:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent of "Select Features" and "Map Graphics" in Javascript 4</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35201#M2899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks as always robert.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just using hitTest (without your query example) it always outputs a empty result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was thinking maybe it is because its a MapImageLayer, so the query must be done?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or maybe because all my features are point, and the screenPoint given to hitTest has no pixel tolerance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 May 2017 18:55:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35201#M2899</guid>
      <dc:creator>SamuelAbati</dc:creator>
      <dc:date>2017-05-03T18:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent of "Select Features" and "Map Graphics" in Javascript 4</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35202#M2900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Samuel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;Correct as there is no actual graphic to intersect when using a MapImageLayer (it's juts an image).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 May 2017 18:59:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35202#M2900</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-05-03T18:59:18Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent of "Select Features" and "Map Graphics" in Javascript 4</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35203#M2901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That explains a lot of things!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Last question, to your second answer, let's say I want to add a graphics on top of features of an MapImageLayer based on a list of OBJECTIDs&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would make a query filtering by those OBJECTIDs, return geometry, and then loop through the returned geometries to get their coordinates, so them I can add graphics to those coordinates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is that it or there is a simpler way?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 May 2017 19:09:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35203#M2901</guid>
      <dc:creator>SamuelAbati</dc:creator>
      <dc:date>2017-05-03T19:09:28Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent of "Select Features" and "Map Graphics" in Javascript 4</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35204#M2902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Samuel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;The return result of a query is a featureset (basically and array of graphics). So you just add those returned graphics to the GL no need to mess with geometries.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 May 2017 19:23:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35204#M2902</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-05-03T19:23:02Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent of "Select Features" and "Map Graphics" in Javascript 4</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35205#M2903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you happen to know how to add a pixel based buffer to the query/mapPoint?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My features are all points and the query using the mapPoint isn't finding anything&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 May 2017 20:45:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35205#M2903</guid>
      <dc:creator>SamuelAbati</dc:creator>
      <dc:date>2017-05-03T20:45:46Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent of "Select Features" and "Map Graphics" in Javascript 4</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35206#M2904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Samuel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;I actually don't know how to do pixels but you can specify a distance and unit on the query class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-bare" href="https://developers.arcgis.com/javascript/latest/api-reference/esri-tasks-support-Query.html#units" title="https://developers.arcgis.com/javascript/latest/api-reference/esri-tasks-support-Query.html#units"&gt;https://developers.arcgis.com/javascript/latest/api-reference/esri-tasks-support-Query.html#units&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="link-bare" href="https://developers.arcgis.com/javascript/latest/api-reference/esri-tasks-support-Query.html#distance" title="https://developers.arcgis.com/javascript/latest/api-reference/esri-tasks-support-Query.html#distance"&gt;https://developers.arcgis.com/javascript/latest/api-reference/esri-tasks-support-Query.html#distance&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 May 2017 21:07:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35206#M2904</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-05-03T21:07:18Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent of "Select Features" and "Map Graphics" in Javascript 4</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35207#M2905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Where is lyrView defined?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Nov 2017 18:10:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35207#M2905</guid>
      <dc:creator>JayHill</dc:creator>
      <dc:date>2017-11-09T18:10:35Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent of "Select Features" and "Map Graphics" in Javascript 4</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35208#M2906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A class="link-bare" href="https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html#whenLayerView" title="https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html#whenLayerView"&gt;https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html#whenLayerView&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can get a layer view from the MapView&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Nov 2017 18:13:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35208#M2906</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-11-09T18:13:16Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent of "Select Features" and "Map Graphics" in Javascript 4</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35209#M2907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert&lt;/P&gt;&lt;P&gt;I am getting lyrView.queryFeatures is not a function error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;app.view.whenLayerView(layer)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .then(function(lyrView) {&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;app.view.on("click", function(event){&lt;BR /&gt;&amp;nbsp; console.log(event);&lt;BR /&gt;&amp;nbsp; var query = new Query();&lt;BR /&gt;&amp;nbsp; query.geometry = event.mapPoint;&lt;BR /&gt;&amp;nbsp; query.spatialRelationship = "intersects";&lt;BR /&gt;&amp;nbsp; lyrView.queryFeatures(query).then(function(results){&lt;BR /&gt;&amp;nbsp;console.log(results);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; var graphic = new Graphic({&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //gotta set a defined geometry for the symbol to draw&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; geometry: results,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; symbol: new SimpleMarkerSymbol({&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //color: [0,255,255],&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style: "circle",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //size: "18px",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; outline: {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; color: [255,255,0],&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; width: 3&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp;&amp;nbsp; })&lt;BR /&gt;&amp;nbsp;})&lt;BR /&gt;});&lt;BR /&gt;app.view.graphics.add(graphic);&lt;BR /&gt;console.log(graphic);&lt;BR /&gt;})&lt;BR /&gt;});&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Nov 2017 18:42:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35209#M2907</guid>
      <dc:creator>JayHill</dc:creator>
      <dc:date>2017-11-09T18:42:52Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent of "Select Features" and "Map Graphics" in Javascript 4</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35210#M2908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;What is your layer type?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Nov 2017 19:19:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35210#M2908</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-11-09T19:19:20Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent of "Select Features" and "Map Graphics" in Javascript 4</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35211#M2909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;MapImageLayer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Nov 2017 19:56:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35211#M2909</guid>
      <dc:creator>JayHill</dc:creator>
      <dc:date>2017-11-09T19:56:09Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent of "Select Features" and "Map Graphics" in Javascript 4</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35212#M2910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;That is the reason. MapImageLayer view does not have a queryFeatures function.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Nov 2017 20:07:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35212#M2910</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-11-09T20:07:19Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent of "Select Features" and "Map Graphics" in Javascript 4</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35213#M2911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah ok. I thought this was a solution for using MapImageLayer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks Robert&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Nov 2017 20:13:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35213#M2911</guid>
      <dc:creator>JayHill</dc:creator>
      <dc:date>2017-11-09T20:13:50Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent of "Select Features" and "Map Graphics" in Javascript 4</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35214#M2912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jay, did you ever figure out a solution to this for MapImageLayer? I also would like to simulate a click on a mapImageLayer feature...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2018 21:49:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35214#M2912</guid>
      <dc:creator>NathanielRindlaub</dc:creator>
      <dc:date>2018-05-24T21:49:51Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent of "Select Features" and "Map Graphics" in Javascript 4</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35215#M2913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P class=""&gt;For that you just add a view click event handler and execute an identifytask or a query task for certain layers in th MapImageLayer using the mapPoint as the geometry&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2018 22:07:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/equivalent-of-quot-select-features-quot-and-quot/m-p/35215#M2913</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-05-24T22:07:52Z</dc:date>
    </item>
  </channel>
</rss>

