<?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: SceneView Source Polygons No Popup in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/sceneview-source-polygons-no-popup/m-p/114762#M10716</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great job, almost there!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got it to work in the example code, but for some obscure reason it does not work in my real application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;More clever ideas? Does it matter when&amp;nbsp;the fix is applied, before the layer is added to the map?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Jun 2017 21:24:00 GMT</pubDate>
    <dc:creator>JoakimClivemo</dc:creator>
    <dc:date>2017-06-12T21:24:00Z</dc:date>
    <item>
      <title>SceneView Source Polygons No Popup</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/sceneview-source-polygons-no-popup/m-p/114756#M10710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've developed a 4.3 application where the users can choose to mark random point or areas on a map.&amp;nbsp;The graphics are fetched by queries on the server side and pushed down to the client. There can be many layers and the user also can choose&amp;nbsp;2D or 3D. I am using a simple PopupTemplate, set on the layer, to display info from the graphics.&lt;/P&gt;&lt;P&gt;Since there can be several layers&amp;nbsp;I need to use FeatureLayer and it's source attribute&amp;nbsp;in order to&amp;nbsp;get all the bells and whistles I need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem is that on 3D views, the SceneView implementation, the Popup does not work for Polygons, it just won't pop up!&lt;/P&gt;&lt;P&gt;All other combinations work just fine, 2D with Polygons, 2D with Points &lt;STRONG&gt;and even 3D with Points works&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just not 3D with Polygons, anyone out there with&amp;nbsp;an idea?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Joakim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jun 2017 08:03:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/sceneview-source-polygons-no-popup/m-p/114756#M10710</guid>
      <dc:creator>JoakimClivemo</dc:creator>
      <dc:date>2017-06-12T08:03:28Z</dc:date>
    </item>
    <item>
      <title>Re: SceneView Source Polygons No Popup</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/sceneview-source-polygons-no-popup/m-p/114757#M10711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'll take a look at this, it may have to do with hitTest. &amp;nbsp;Can you provide a sample with the layer in question in a scene view?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you also be more specific about what you mean by using the source for a feature layer?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jun 2017 13:29:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/sceneview-source-polygons-no-popup/m-p/114757#M10711</guid>
      <dc:creator>ThomasSolow</dc:creator>
      <dc:date>2017-06-12T13:29:48Z</dc:date>
    </item>
    <item>
      <title>Re: SceneView Source Polygons No Popup</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/sceneview-source-polygons-no-popup/m-p/114758#M10712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for looking at this!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can try to create a pure JavaScript sample, my current solution is far to complex to attach as an understandable sample.&lt;/P&gt;&lt;P&gt;I'll&amp;nbsp;have to get back to you on that one, but here's some info anyway...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By "&lt;EM&gt;source for a feature layer&lt;/EM&gt;" I mean that I use the &lt;STRONG&gt;source&lt;/STRONG&gt; attribute, rather than using an URL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In short:&lt;/P&gt;&lt;P&gt;Depending on user actions I&amp;nbsp;generate one or several JSON-strings containing "Graphic" elements&amp;nbsp;on the server side which is then pushed to the browser.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The browser JavaScript then basically do:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;SPAN style="color: #808080;"&gt;var g = Graphic.&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;fromJSON(myJSON);
&lt;/SPAN&gt;&lt;/SPAN&gt;myFeaturLayer.source.add(g);&amp;nbsp; // Hence the "&lt;SPAN style="color: #3d3d3d;"&gt;FeatureLayer and it's source attribute"

The FeatureLayer has been configured and added to the map earlier.
The FeatureLayer and the Graphics are created and added using the same code regardless of 3D or 2D.
&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:47:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/sceneview-source-polygons-no-popup/m-p/114758#M10712</guid>
      <dc:creator>JoakimClivemo</dc:creator>
      <dc:date>2021-12-11T06:47:31Z</dc:date>
    </item>
    <item>
      <title>Re: SceneView Source Polygons No Popup</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/sceneview-source-polygons-no-popup/m-p/114759#M10713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Okay, after looking at this: can you try setting the popupTemplate on each graphic? &amp;nbsp;It can be on the layer also, but please check to see if setting it on the graphic changes anything.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jun 2017 17:36:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/sceneview-source-polygons-no-popup/m-p/114759#M10713</guid>
      <dc:creator>ThomasSolow</dc:creator>
      <dc:date>2017-06-12T17:36:42Z</dc:date>
    </item>
    <item>
      <title>Re: SceneView Source Polygons No Popup</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/sceneview-source-polygons-no-popup/m-p/114760#M10714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Attached you'll find an example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No, adding the popup template to the Graphic does not help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/Joakim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jun 2017 18:26:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/sceneview-source-polygons-no-popup/m-p/114760#M10714</guid>
      <dc:creator>JoakimClivemo</dc:creator>
      <dc:date>2017-06-12T18:26:06Z</dc:date>
    </item>
    <item>
      <title>Re: SceneView Source Polygons No Popup</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/sceneview-source-polygons-no-popup/m-p/114761#M10715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the sample.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It looks like there's two bugs here: the first (not relevant to you) is that 'on-the-ground' graphics&amp;nbsp;in a graphics layer only use a popup template set on the individual graphic, they don't look for a popupTemplate on the layer itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The second (relevant to you) concerns how feature layers constructed from a source are searched. &amp;nbsp;Since there's no backend resource for these feature layers, the search is done in the client. &amp;nbsp;This works fine for geometries that are not 'on-the-ground,' but for anything that is draped on the ground, there are a few issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's a workaround that may fix this issue for you, for now:&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;// layer is any feature layer you create from a source.&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;// this code should be placed somewhere after the layer has been created&lt;/SPAN&gt;
layer&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;createQuery &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;function&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;
&amp;nbsp; &lt;SPAN class="keyword token"&gt;let&lt;/SPAN&gt; q &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; layer&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;__proto__&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;createQuery&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;call&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;layer&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp; q&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;outFields &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;null&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp; q&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;where &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;null&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp; &lt;SPAN class="keyword token"&gt;return&lt;/SPAN&gt; q&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;&lt;/P&gt;&lt;P&gt;Please let me know if that helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:47:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/sceneview-source-polygons-no-popup/m-p/114761#M10715</guid>
      <dc:creator>ThomasSolow</dc:creator>
      <dc:date>2021-12-11T06:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: SceneView Source Polygons No Popup</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/sceneview-source-polygons-no-popup/m-p/114762#M10716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great job, almost there!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got it to work in the example code, but for some obscure reason it does not work in my real application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;More clever ideas? Does it matter when&amp;nbsp;the fix is applied, before the layer is added to the map?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jun 2017 21:24:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/sceneview-source-polygons-no-popup/m-p/114762#M10716</guid>
      <dc:creator>JoakimClivemo</dc:creator>
      <dc:date>2017-06-12T21:24:00Z</dc:date>
    </item>
    <item>
      <title>Re: SceneView Source Polygons No Popup</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/sceneview-source-polygons-no-popup/m-p/114763#M10717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My bad!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Type-o, missed to change the call parameter name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It works great&amp;nbsp;now! You&amp;nbsp;have saved my day!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a million!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jun 2017 21:57:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/sceneview-source-polygons-no-popup/m-p/114763#M10717</guid>
      <dc:creator>JoakimClivemo</dc:creator>
      <dc:date>2017-06-12T21:57:55Z</dc:date>
    </item>
    <item>
      <title>Re: SceneView Source Polygons No Popup</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/sceneview-source-polygons-no-popup/m-p/114764#M10718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This also fixed my popup problem.&amp;nbsp; Thank you!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However,&amp;nbsp;I still have a problem in that, for an almost identical situation, I need a &lt;EM&gt;hit test&lt;/EM&gt; to work.&amp;nbsp; It does for MapView, but not SceneView.&amp;nbsp;&amp;nbsp;If I add the following code to Joakim's example, I'll get the "GRAPHIC FOUND" message when mousing over Sweden only&amp;nbsp;with a MapView.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;SPAN style="font-size: 9.0pt; color: black;"&gt;view.on(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; color: #a31515;"&gt;"pointer-move"&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; color: black;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; color: blue;"&gt;function&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; color: black;"&gt;(event){&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;SPAN style="font-size: 9.0pt; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; view.hitTest(event).then(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; color: blue;"&gt;function&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; color: black;"&gt;(response){&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;SPAN style="font-size: 9.0pt; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; color: blue;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; color: black;"&gt; (response.results.length) {&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;SPAN style="font-size: 9.0pt; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; color: blue;"&gt;var&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; color: black;"&gt; resultWithGraphic = response.results.find(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; color: blue;"&gt;function&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; color: black;"&gt; (result) {&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;SPAN style="font-size: 9.0pt; color: black;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; color: blue;"&gt;return&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; color: black;"&gt; result.graphic != &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; color: blue;"&gt;null&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; color: black;"&gt;; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;SPAN style="font-size: 9.0pt; color: black;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;SPAN style="font-size: 9.0pt; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; color: blue;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; color: black;"&gt; (resultWithGraphic) &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;SPAN style="font-size: 9.0pt; color: black;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; document.getElementById(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; color: #a31515;"&gt;"hitTestResult"&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; color: black;"&gt;).innerHTML = &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; color: #a31515;"&gt;"[GRAPHIC FOUND]"&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; color: black;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;SPAN style="font-size: 9.0pt; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; color: blue;"&gt;else&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;SPAN style="font-size: 9.0pt; color: black;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;document.getElementById(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; color: #a31515;"&gt;"hitTestResult"&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; color: black;"&gt;).innerHTML = &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; color: #a31515;"&gt;"--"&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; color: black;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;SPAN style="font-size: 9.0pt; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;SPAN style="font-size: 9.0pt; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;SPAN style="font-size: 9.0pt; color: black;"&gt;});&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;SPAN style="font-size: 9.0pt; color: black;"&gt;And, elsewhere:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;/P&gt;&lt;DIV style="background-color: #ffffff; font-weight: normal;"&gt;&lt;DIV&gt;&lt;SPAN style="color: #800000;"&gt;&amp;lt;span&lt;/SPAN&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #ff0000;"&gt;id&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;"hitTestResult"&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;&amp;gt;&amp;lt;/span&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #800000;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #800000;"&gt;&lt;SPAN style="color: #3d3d3d;"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;For a SceneView, I'll get the result.mapPoint, but the result.graphic is always null&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d;"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Mar 2018 20:29:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/sceneview-source-polygons-no-popup/m-p/114764#M10718</guid>
      <dc:creator>TonyGraham</dc:creator>
      <dc:date>2018-03-27T20:29:54Z</dc:date>
    </item>
  </channel>
</rss>

