<?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: how to display geometry in Camera in SceneView in Qt Maps SDK Questions</title>
    <link>https://community.esri.com/t5/qt-maps-sdk-questions/how-to-display-geometry-in-camera-in-sceneview/m-p/238990#M1216</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Most of these I already use. Since Camera object is immutable I create Camera each time gpsCoords arrive.&lt;/P&gt;&lt;P&gt;This is short version of my function, currFlatPoint is for currPositionGraphic marker and for distance calculation, currPoint is for camera with addidtional z coordinate&lt;/P&gt;&lt;PRE&gt;&lt;SPAN style="text-decoration: underline;"&gt;function&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;gpsCoord(latitude,longitude,direction,speed)&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;{&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #808000;"&gt;if&lt;/SPAN&gt;(!currPoint&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&amp;amp;&amp;amp;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;sceneView.drawStatus!=Enums.DrawStatusCompleted)&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #808000;"&gt;return&lt;/SPAN&gt;;&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;currPoint=ArcGISRuntimeEnvironment.createObject(&lt;SPAN style="color: #008000;"&gt;"Point"&lt;/SPAN&gt;,&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;{x:longitude,&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;y:latitude,z:point_z[curr_z_idx],&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;spatialReference:&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;mapPage.spat_ref});&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;currFlatPoint=ArcGISRuntimeEnvironment.createObject(&lt;SPAN style="color: #008000;"&gt;"Point"&lt;/SPAN&gt;,&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;{x:longitude,&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;y:latitude,&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;spatialReference:&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;mapPage.spat_ref});&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #808000;"&gt;if&lt;/SPAN&gt;(speed&amp;gt;=2)&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;{&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;mapPage.heading=direction //dont rotate on low speed&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;}&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;camera=ArcGISRuntimeEnvironment.createObject(&lt;SPAN style="color: #008000;"&gt;"Camera"&lt;/SPAN&gt;,{pitch:pitch,roll:0,heading:mapPage.heading,location:currPoint,distance:camera_z[curr_z_idx]});&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;sceneView.setViewpointCameraAndSeconds(camera,cam_speed)&lt;/PRE&gt;&lt;PRE&gt;}&lt;/PRE&gt;&lt;PRE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm changing variable curr_z_idx depending on how far from the next maneuver, I want camera to be closer when approaching turn (or any maneuver). By trial and error I came up with these values for currPoint z variable and Camera distance&lt;/P&gt;&lt;PRE&gt;&lt;SPAN style="color: #808000;"&gt;property&lt;/SPAN&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: #800000;"&gt;point_z&lt;/SPAN&gt;:[150,100,70,30]&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="color: #808000;"&gt;property&lt;/SPAN&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: #800000;"&gt;camera_z&lt;/SPAN&gt;:[450,350,250,150]&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="color: #808000;"&gt;property&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #808000;"&gt;int&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;curr_z_idx&lt;/SPAN&gt;:0_&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, to show whole route I need to get center point of the route, put camera with 0 pitch and some heading and some "distance" value, distance must be large enought to show whole route. I'm not sure how to calculate distance, I could use some trigonometric functions, had I known camera angle of view, but I don't&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As You can see there is also an issue with tiles, with MapView they refresh much faster.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/409026_Screenshot_20180525_101910.png" /&gt;&lt;IMG alt="" class="image-2 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/409027_Screenshot_20180525_102205.png" /&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Marek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 25 May 2018 09:36:07 GMT</pubDate>
    <dc:creator>MarekFlorianczyk</dc:creator>
    <dc:date>2018-05-25T09:36:07Z</dc:date>
    <item>
      <title>how to display geometry in Camera in SceneView</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/how-to-display-geometry-in-camera-in-sceneview/m-p/238988#M1214</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 have switched to SceneView and Camera, after I solve route I would like to changte camera view to show whole route. With MapView I could set geometry for view with scene I basically move the camera when navigating, but how to create view for camera when&amp;nbsp;&lt;SPAN style="color: #000000;"&gt;route&lt;/SPAN&gt;.routeGeometry is all I have.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Marek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2018 17:32:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/how-to-display-geometry-in-camera-in-sceneview/m-p/238988#M1214</guid>
      <dc:creator>MarekFlorianczyk</dc:creator>
      <dc:date>2018-05-24T17:32:19Z</dc:date>
    </item>
    <item>
      <title>Re: how to display geometry in Camera in SceneView</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/how-to-display-geometry-in-camera-in-sceneview/m-p/238989#M1215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With the camera, you'll have to set a few additional things:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- location - set this to&amp;nbsp;the center of your route geometry (or optionally to some other vertex along the route). You can get the center by taking the geometry from the route and getting the Envelope (.extent), then getting the center Point (.center)&lt;/P&gt;&lt;P&gt;- pitch - this is your vertical angle you want the camera. 0 will look straight down. 90 will look straight across.&lt;/P&gt;&lt;P&gt;- heading - this is the heading direction you want the camera&lt;/P&gt;&lt;P&gt;- distance - this is how far you want the camera to be from the specified location.&lt;/P&gt;&lt;P&gt;- roll - this is the side to side angle. This is less commonly used.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2018 20:52:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/how-to-display-geometry-in-camera-in-sceneview/m-p/238989#M1215</guid>
      <dc:creator>LucasDanzinger</dc:creator>
      <dc:date>2018-05-24T20:52:29Z</dc:date>
    </item>
    <item>
      <title>Re: how to display geometry in Camera in SceneView</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/how-to-display-geometry-in-camera-in-sceneview/m-p/238990#M1216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Most of these I already use. Since Camera object is immutable I create Camera each time gpsCoords arrive.&lt;/P&gt;&lt;P&gt;This is short version of my function, currFlatPoint is for currPositionGraphic marker and for distance calculation, currPoint is for camera with addidtional z coordinate&lt;/P&gt;&lt;PRE&gt;&lt;SPAN style="text-decoration: underline;"&gt;function&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;gpsCoord(latitude,longitude,direction,speed)&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;{&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #808000;"&gt;if&lt;/SPAN&gt;(!currPoint&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&amp;amp;&amp;amp;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;sceneView.drawStatus!=Enums.DrawStatusCompleted)&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #808000;"&gt;return&lt;/SPAN&gt;;&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;currPoint=ArcGISRuntimeEnvironment.createObject(&lt;SPAN style="color: #008000;"&gt;"Point"&lt;/SPAN&gt;,&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;{x:longitude,&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;y:latitude,z:point_z[curr_z_idx],&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;spatialReference:&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;mapPage.spat_ref});&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;currFlatPoint=ArcGISRuntimeEnvironment.createObject(&lt;SPAN style="color: #008000;"&gt;"Point"&lt;/SPAN&gt;,&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;{x:longitude,&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;y:latitude,&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;spatialReference:&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;mapPage.spat_ref});&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #808000;"&gt;if&lt;/SPAN&gt;(speed&amp;gt;=2)&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;{&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;mapPage.heading=direction //dont rotate on low speed&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;}&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;camera=ArcGISRuntimeEnvironment.createObject(&lt;SPAN style="color: #008000;"&gt;"Camera"&lt;/SPAN&gt;,{pitch:pitch,roll:0,heading:mapPage.heading,location:currPoint,distance:camera_z[curr_z_idx]});&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;sceneView.setViewpointCameraAndSeconds(camera,cam_speed)&lt;/PRE&gt;&lt;PRE&gt;}&lt;/PRE&gt;&lt;PRE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm changing variable curr_z_idx depending on how far from the next maneuver, I want camera to be closer when approaching turn (or any maneuver). By trial and error I came up with these values for currPoint z variable and Camera distance&lt;/P&gt;&lt;PRE&gt;&lt;SPAN style="color: #808000;"&gt;property&lt;/SPAN&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: #800000;"&gt;point_z&lt;/SPAN&gt;:[150,100,70,30]&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="color: #808000;"&gt;property&lt;/SPAN&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: #800000;"&gt;camera_z&lt;/SPAN&gt;:[450,350,250,150]&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="color: #808000;"&gt;property&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #808000;"&gt;int&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;curr_z_idx&lt;/SPAN&gt;:0_&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, to show whole route I need to get center point of the route, put camera with 0 pitch and some heading and some "distance" value, distance must be large enought to show whole route. I'm not sure how to calculate distance, I could use some trigonometric functions, had I known camera angle of view, but I don't&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As You can see there is also an issue with tiles, with MapView they refresh much faster.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/409026_Screenshot_20180525_101910.png" /&gt;&lt;IMG alt="" class="image-2 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/409027_Screenshot_20180525_102205.png" /&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Marek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 May 2018 09:36:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/how-to-display-geometry-in-camera-in-sceneview/m-p/238990#M1216</guid>
      <dc:creator>MarekFlorianczyk</dc:creator>
      <dc:date>2018-05-25T09:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: how to display geometry in Camera in SceneView</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/how-to-display-geometry-in-camera-in-sceneview/m-p/238991#M1217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Marek-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To show the full route, the best thing to do would be to not use Camera, and just use the GeoView.setViewpoint function and pass in a ViewpointExtent (which you could create from the route geometry's full extent:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/qt/latest/qml/api-reference/qml-esri-arcgisruntime-geoview.html#setViewpoint-method" title="https://developers.arcgis.com/qt/latest/qml/api-reference/qml-esri-arcgisruntime-geoview.html#setViewpoint-method"&gt;GeoView QML Type | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/qt/latest/qml/api-reference/qml-esri-arcgisruntime-viewpointextent.html" title="https://developers.arcgis.com/qt/latest/qml/api-reference/qml-esri-arcgisruntime-viewpointextent.html"&gt;ViewpointExtent QML Type | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 May 2018 13:29:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/how-to-display-geometry-in-camera-in-sceneview/m-p/238991#M1217</guid>
      <dc:creator>LucasDanzinger</dc:creator>
      <dc:date>2018-05-25T13:29:38Z</dc:date>
    </item>
    <item>
      <title>Re: how to display geometry in Camera in SceneView</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/how-to-display-geometry-in-camera-in-sceneview/m-p/238992#M1218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lucas,&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&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;vp&lt;/SPAN&gt;=&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;ArcGISRuntimeEnvironment&lt;/SPAN&gt;.createObject(&lt;SPAN style="color: #008000;"&gt;"ViewpointExtent"&lt;/SPAN&gt;,&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;{extent:&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;route&lt;/SPAN&gt;.routeGeometry.extent});&lt;/PRE&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;SPAN style="color: #000000;"&gt;sceneView&lt;/SPAN&gt;.setViewpoint(&lt;SPAN style="color: #2985c7;"&gt;vp&lt;/SPAN&gt;);

Best,
Marek&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 16:13:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/how-to-display-geometry-in-camera-in-sceneview/m-p/238992#M1218</guid>
      <dc:creator>MarekFlorianczyk</dc:creator>
      <dc:date>2021-12-12T16:13:51Z</dc:date>
    </item>
  </channel>
</rss>

