<?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 How to get the (latitude/longitude/altitude) position using GPS only (offline) ? in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/How-to-get-the-latitude-longitude-altitude-position-using-GPS/m-p/1095142#M66709</link>
    <description>&lt;P&gt;Hello&lt;/P&gt;

&lt;P&gt;Is there anyway to get&amp;nbsp;&amp;nbsp;(latitude/longitude/altitude) position using GPS only (offline) ?&lt;/P&gt;

&lt;P&gt;I don't need to use google maps - just GPS info !!&lt;/P&gt;

&lt;P&gt;I used &lt;A href="https://market.ionic.io/starters/offline-gps"&gt;this&lt;/A&gt; (with ionic) and a simple app with &lt;A href="https://github.com/apache/cordova-plugin-geolocation"&gt;this plugin&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;both required the internet connection to get the GPS info&lt;/P&gt;

&lt;P&gt;is Intel XDK has a solution for this issue ?&lt;/P&gt;</description>
    <pubDate>Tue, 22 Nov 2016 17:42:14 GMT</pubDate>
    <dc:creator>Ahmed_M_2</dc:creator>
    <dc:date>2016-11-22T17:42:14Z</dc:date>
    <item>
      <title>How to get the (latitude/longitude/altitude) position using GPS only (offline) ?</title>
      <link>https://community.intel.com/t5/Software-Archive/How-to-get-the-latitude-longitude-altitude-position-using-GPS/m-p/1095142#M66709</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;

&lt;P&gt;Is there anyway to get&amp;nbsp;&amp;nbsp;(latitude/longitude/altitude) position using GPS only (offline) ?&lt;/P&gt;

&lt;P&gt;I don't need to use google maps - just GPS info !!&lt;/P&gt;

&lt;P&gt;I used &lt;A href="https://market.ionic.io/starters/offline-gps"&gt;this&lt;/A&gt; (with ionic) and a simple app with &lt;A href="https://github.com/apache/cordova-plugin-geolocation"&gt;this plugin&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;both required the internet connection to get the GPS info&lt;/P&gt;

&lt;P&gt;is Intel XDK has a solution for this issue ?&lt;/P&gt;</description>
      <pubDate>Tue, 22 Nov 2016 17:42:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/How-to-get-the-latitude-longitude-altitude-position-using-GPS/m-p/1095142#M66709</guid>
      <dc:creator>Ahmed_M_2</dc:creator>
      <dc:date>2016-11-22T17:42:14Z</dc:date>
    </item>
    <item>
      <title>The Geolocation plugin</title>
      <link>https://community.intel.com/t5/Software-Archive/How-to-get-the-latitude-longitude-altitude-position-using-GPS/m-p/1095143#M66710</link>
      <description>&lt;P&gt;The Geolocation plugin description says that:&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;"&lt;SPAN style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;Common sources of location information include Global Positioning System (GPS) and location inferred from network signals such as IP address, RFID, WiFi and Bluetooth MAC addresses, and GSM/CDMA cell IDs."&lt;/SPAN&gt;&lt;/P&gt;

	&lt;P&gt;&lt;SPAN style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;and&lt;/SPAN&gt;&lt;/P&gt;

	&lt;P&gt;&lt;SPAN style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;"This API is based on the&amp;nbsp;&lt;/SPAN&gt;&lt;A href="http://dev.w3.org/geo/api/spec-source.html" style="box-sizing: border-box; background-color: transparent; -webkit-text-decoration-skip: objects; color: rgb(64, 120, 192); font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;W3C Geolocation API Specification&lt;/A&gt;&lt;SPAN style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;, and only executes on devices that don't already provide an implementation."&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;&lt;FONT color="#333333" face="-apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol" size="3"&gt;So they might be relying on the browser implementation that first&amp;nbsp;tries to get the location using&amp;nbsp;methods that require internet access. &amp;nbsp;See if setting 'enableHighAccuracy' option to true might force it to use actual gps info first. &amp;nbsp;If this doesn't work, you might have to search for another plugin that directly provides the gps info or write your own. &amp;nbsp;It's also a good idea to test on different devices.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Nov 2016 18:35:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/How-to-get-the-latitude-longitude-altitude-position-using-GPS/m-p/1095143#M66710</guid>
      <dc:creator>Shahab_L_Intel</dc:creator>
      <dc:date>2016-11-22T18:35:31Z</dc:date>
    </item>
    <item>
      <title>Thanks , I'll re-search for</title>
      <link>https://community.intel.com/t5/Software-Archive/How-to-get-the-latitude-longitude-altitude-position-using-GPS/m-p/1095144#M66711</link>
      <description>&lt;P&gt;Thanks , I'll re-search for that&lt;/P&gt;

&lt;P&gt;then , what about the altitude problem - it was (unavailable) on my mobile ?&lt;/P&gt;</description>
      <pubDate>Wed, 23 Nov 2016 16:48:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/How-to-get-the-latitude-longitude-altitude-position-using-GPS/m-p/1095144#M66711</guid>
      <dc:creator>Ahmed_M_2</dc:creator>
      <dc:date>2016-11-23T16:48:26Z</dc:date>
    </item>
    <item>
      <title>Being able to get altitude</title>
      <link>https://community.intel.com/t5/Software-Archive/How-to-get-the-latitude-longitude-altitude-position-using-GPS/m-p/1095145#M66712</link>
      <description>&lt;P&gt;Being able to get altitude would depend on your device GPS and embedded browser implementation or the plugin implementation.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Nov 2016 19:19:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/How-to-get-the-latitude-longitude-altitude-position-using-GPS/m-p/1095145#M66712</guid>
      <dc:creator>Shahab_L_Intel</dc:creator>
      <dc:date>2016-11-23T19:19:16Z</dc:date>
    </item>
  </channel>
</rss>

