<?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: LocationChanged without altitude in Qt Maps SDK Questions</title>
    <link>https://community.esri.com/t5/qt-maps-sdk-questions/locationchanged-without-altitude/m-p/202727#M1002</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much. It is now working. I have tried the positionUpdate Signal and I now get the altitude.&lt;/P&gt;&lt;P&gt;Is this a bug in ArcGIS?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Aug 2018 16:41:01 GMT</pubDate>
    <dc:creator>Kai_Wellmann</dc:creator>
    <dc:date>2018-08-15T16:41:01Z</dc:date>
    <item>
      <title>LocationChanged without altitude</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/locationchanged-without-altitude/m-p/202723#M998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have written a small app with qt and arcgis 100.3. When the gps information changes the slot LocationChanged is called. I thought that I would get the altitude from Location.position.z. But I always get 0 for the altitude.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What do I have to do to get the actual altitude?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;void FlightMap::locationChanged(Esri::ArcGISRuntime::Location location)&lt;BR /&gt;{&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Point pos=location.position();&lt;BR /&gt; x=pos.x();&lt;BR /&gt; y=pos.y();&lt;BR /&gt; z=pos.z();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Aug 2018 13:59:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/locationchanged-without-altitude/m-p/202723#M998</guid>
      <dc:creator>Kai_Wellmann</dc:creator>
      <dc:date>2018-08-12T13:59:40Z</dc:date>
    </item>
    <item>
      <title>Re: LocationChanged without altitude</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/locationchanged-without-altitude/m-p/202724#M999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What signal are you connecting to for this slot?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2018 14:52:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/locationchanged-without-altitude/m-p/202724#M999</guid>
      <dc:creator>LucasDanzinger</dc:creator>
      <dc:date>2018-08-13T14:52:56Z</dc:date>
    </item>
    <item>
      <title>Re: LocationChanged without altitude</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/locationchanged-without-altitude/m-p/202725#M1000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;connect(m_MapView-&amp;gt;locationDisplay(),SIGNAL(locationChanged(Esri::ArcGISRuntime::Location)),this,SLOT(locationChanged(Esri::ArcGISRuntime::Location)));&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2018 15:07:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/locationchanged-without-altitude/m-p/202725#M1000</guid>
      <dc:creator>Kai_Wellmann</dc:creator>
      <dc:date>2018-08-13T15:07:29Z</dc:date>
    </item>
    <item>
      <title>Re: LocationChanged without altitude</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/locationchanged-without-altitude/m-p/202726#M1001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kai-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The LocationDisplay is the view component for Qt's QGeoPositionInfoSource. Can you try creating a QGeoPositionInfoSource and listening to it's positionUpdated signal?&amp;nbsp;&lt;A class="link-titled" href="http://doc.qt.io/qt-5/qgeopositioninfosource.html#positionUpdated" title="http://doc.qt.io/qt-5/qgeopositioninfosource.html#positionUpdated"&gt;QGeoPositionInfoSource Class | Qt Positioning 5.11&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm wondering if the data that is coming in only has X and Y but no Z.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2018 21:50:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/locationchanged-without-altitude/m-p/202726#M1001</guid>
      <dc:creator>LucasDanzinger</dc:creator>
      <dc:date>2018-08-13T21:50:15Z</dc:date>
    </item>
    <item>
      <title>Re: LocationChanged without altitude</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/locationchanged-without-altitude/m-p/202727#M1002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much. It is now working. I have tried the positionUpdate Signal and I now get the altitude.&lt;/P&gt;&lt;P&gt;Is this a bug in ArcGIS?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Aug 2018 16:41:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/locationchanged-without-altitude/m-p/202727#M1002</guid>
      <dc:creator>Kai_Wellmann</dc:creator>
      <dc:date>2018-08-15T16:41:01Z</dc:date>
    </item>
    <item>
      <title>Re: LocationChanged without altitude</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/locationchanged-without-altitude/m-p/202728#M1003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kai - so the results are that you get z values when using positionUpdated but not on the locationChanged signal? If so, then this sounds like a bug in ArcGIS Runtime.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2018 19:00:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/locationchanged-without-altitude/m-p/202728#M1003</guid>
      <dc:creator>LucasDanzinger</dc:creator>
      <dc:date>2018-08-20T19:00:40Z</dc:date>
    </item>
  </channel>
</rss>

