<?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 create a target-tracking view? in Qt Maps SDK Questions</title>
    <link>https://community.esri.com/t5/qt-maps-sdk-questions/how-to-create-a-target-tracking-view/m-p/1073850#M4291</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/368809"&gt;@KennSebesta&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;We have a few different samples that may useful to solve this. The first thing that comes to mind is the StreamLayer but Runtime doesn't support that yet. But not to worry, we have an entire Qt example app designed for a similar purpose: the "DSA" (dynamic situational awareness). That might be overkill for what you need but it would solve the issue. The only thing to keep in mind with the DSA app is that it is built with the Qt C++ API so the concepts will transfer to the QML API but not the codebase.&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Esri/dynamic-situational-awareness-qt" target="_blank"&gt;https://github.com/Esri/dynamic-situational-awareness-qt&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;An alternate workflow would be to use Kml, which supports dynamically refreshing content. Here's a good example of that workflow which actually uses plane tracking like your example:&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Esri/arcgis-runtime-samples-qt/tree/main/ArcGISRuntimeSDKQt_QMLSamples/Layers/DisplayKmlNetworkLinks" target="_blank"&gt;https://github.com/Esri/arcgis-runtime-samples-qt/tree/main/ArcGISRuntimeSDKQt_QMLSamples/Layers/DisplayKmlNetworkLinks&lt;/A&gt;&lt;/P&gt;&lt;P&gt;We also have a sample that shows how to use frequently-updated raster imagery in 3D to support a radar-like animation via the ImageOverlay. This currently only works in 3D so I don't know if it's suitable to your workflow and requires raster imagery as well.&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Esri/arcgis-runtime-samples-qt/tree/main/ArcGISRuntimeSDKQt_QMLSamples/Scenes/AnimateImagesWithImageOverlay" target="_blank"&gt;https://github.com/Esri/arcgis-runtime-samples-qt/tree/main/ArcGISRuntimeSDKQt_QMLSamples/Scenes/AnimateImagesWithImageOverlay&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 29 Jun 2021 18:51:44 GMT</pubDate>
    <dc:creator>JamesBallard1</dc:creator>
    <dc:date>2021-06-29T18:51:44Z</dc:date>
    <item>
      <title>How to create a target-tracking view?</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/how-to-create-a-target-tracking-view/m-p/1073798#M4289</link>
      <description>&lt;P&gt;Let's say that we wanted to recreate the core visualization of &lt;A href="https://globe.adsbexchange.com/," target="_blank" rel="noopener"&gt;https://globe.adsbexchange.com/,&lt;/A&gt;&amp;nbsp;which basically plots an icon. This icon is a tracked object, and it has a coordinate, speed, and heading, all of which are continually updating. Furthermore, the tracked objects appear and disappear throughout the runtime.&lt;/P&gt;&lt;P&gt;Basically, a simple version of radar.&lt;/P&gt;&lt;P&gt;How would we do something similar with ArcGIS? In the SDK runtime samples set there is&amp;nbsp;&lt;A href="https://github.com/Esri/arcgis-runtime-samples-qt/blob/main/ArcGISRuntimeSDKQt_QMLSamples/DisplayInformation/GODictionaryRenderer/GODictionaryRenderer.qml" target="_self"&gt;example of adding elements&lt;/A&gt; to a map, but that example doesn't include updating them nor removing them.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jun 2021 17:06:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/how-to-create-a-target-tracking-view/m-p/1073798#M4289</guid>
      <dc:creator>KennSebesta</dc:creator>
      <dc:date>2021-06-29T17:06:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a target-tracking view?</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/how-to-create-a-target-tracking-view/m-p/1073850#M4291</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/368809"&gt;@KennSebesta&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;We have a few different samples that may useful to solve this. The first thing that comes to mind is the StreamLayer but Runtime doesn't support that yet. But not to worry, we have an entire Qt example app designed for a similar purpose: the "DSA" (dynamic situational awareness). That might be overkill for what you need but it would solve the issue. The only thing to keep in mind with the DSA app is that it is built with the Qt C++ API so the concepts will transfer to the QML API but not the codebase.&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Esri/dynamic-situational-awareness-qt" target="_blank"&gt;https://github.com/Esri/dynamic-situational-awareness-qt&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;An alternate workflow would be to use Kml, which supports dynamically refreshing content. Here's a good example of that workflow which actually uses plane tracking like your example:&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Esri/arcgis-runtime-samples-qt/tree/main/ArcGISRuntimeSDKQt_QMLSamples/Layers/DisplayKmlNetworkLinks" target="_blank"&gt;https://github.com/Esri/arcgis-runtime-samples-qt/tree/main/ArcGISRuntimeSDKQt_QMLSamples/Layers/DisplayKmlNetworkLinks&lt;/A&gt;&lt;/P&gt;&lt;P&gt;We also have a sample that shows how to use frequently-updated raster imagery in 3D to support a radar-like animation via the ImageOverlay. This currently only works in 3D so I don't know if it's suitable to your workflow and requires raster imagery as well.&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Esri/arcgis-runtime-samples-qt/tree/main/ArcGISRuntimeSDKQt_QMLSamples/Scenes/AnimateImagesWithImageOverlay" target="_blank"&gt;https://github.com/Esri/arcgis-runtime-samples-qt/tree/main/ArcGISRuntimeSDKQt_QMLSamples/Scenes/AnimateImagesWithImageOverlay&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jun 2021 18:51:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/how-to-create-a-target-tracking-view/m-p/1073850#M4291</guid>
      <dc:creator>JamesBallard1</dc:creator>
      <dc:date>2021-06-29T18:51:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a target-tracking view?</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/how-to-create-a-target-tracking-view/m-p/1073995#M4296</link>
      <description>&lt;P&gt;This is great stuff! I'll start with the KML and see if it gets me to where I'm going.&lt;/P&gt;&lt;P&gt;I've said it before but it's worth saying again: the care and thought which went into the SDK samples is truly commendable.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jun 2021 03:59:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/how-to-create-a-target-tracking-view/m-p/1073995#M4296</guid>
      <dc:creator>KennSebesta</dc:creator>
      <dc:date>2021-06-30T03:59:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a target-tracking view?</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/how-to-create-a-target-tracking-view/m-p/1074281#M4300</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/368809"&gt;@KennSebesta&lt;/a&gt;! I will pass along your compliments to our samples team.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jun 2021 17:18:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/how-to-create-a-target-tracking-view/m-p/1074281#M4300</guid>
      <dc:creator>JamesBallard1</dc:creator>
      <dc:date>2021-06-30T17:18:04Z</dc:date>
    </item>
  </channel>
</rss>

