Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get coordinates from Hardware GPS

I've found a lot of questions about GPS Coordinates but not one that confirms using the mobile hardware GPS instead of Web GPS like geoLocation and such like.

My actual method:

I'm using navigator.geolocation.getCurrentPosition(), the Lat/Long comes from the Web, here's the code:

function getGPS(funcCallBack)
{
   if (navigator.geolocation)
   {
     var timeoutVal = getCookie("GPSTimeout");
     navigator.geolocation.getCurrentPosition(sucess
                                             ,error
                                             ,{enableHighAccuracy: true
                                              ,timeout: timeoutVal
                                              ,maximumAge: 0}
                                             );
   }
   else{
   alert('GPS is turned off, or was not possible to find it. Now, doing the login without localization.');
   window.gpsLat = 0;
   window.gpsLng = 0;
   window.gpsAcc = 0;
   funcCallBack();
   }
   function sucess(position) //sucess
   {
      window.gpsLat = position.coords.latitude;
      window.gpsLng = position.coords.longitude;
      window.gpsAcc = position.coords.accuracy;
      funcCallBack();
    }
    function error()         //error
    {
      window.gpsLat   = 0;
      window.gpsLng   = 0;
      window.gpsAcc   = 0;
      funcCallBack();
    }
}

My problem:

Sometimes when I do the login I am not getting the GPS Coordinates (they come 0) and sometimes I am getting coordinates with more than 2,000 Accuracy (that is not precise).

By the way, I am testing the GPS on a data internet service, when I do use a Wi-Fi connection it works perfectly with less than 100 Accuracy.

Details:

Maybe you are complaining about:

  1. timeoutVal: it is a cookie with the number 5000 inside it.
  2. funcCallBack: it is a function that continues the login operation.
  3. window.gpsLat: it is a global var containing the Latitude value got from the geoLocation.
  4. window.gpsLng: it is a global var containing the Longitude value got from the geoLocation.
  5. window.gpsAcc: it is a global var containing the Accuracy value got from the geoLocation.

What do I want?

I want a solution in JavaScript or PHP that can get coordinates from the mobile hardware device, the Native GPS, not the geolocation, and when the Native GPS is turned off, ask the user to turn it on.

like image 326
Paulo Roberto Rosa Avatar asked Dec 06 '13 11:12

Paulo Roberto Rosa


People also ask

How do I get GPS coordinates from a dropped pin?

Get Coordinates on Android To obtain coordinates for a location on Android, you'll drop a pin. Tap and hold a spot on the map. You'll see a red pin appear on the map and a Dropped Pin window at the bottom. The coordinates for the pinned location appear in the Search box at the top.

Is there an app that gives GPS coordinates?

Google Maps For Android users, Google Maps is the simplest way to either enter latitude and longitude coordinates or to find out your current coordinates. If you want to find your current coordinates, zoom into your location and hold down on the touchpad screen in the map.

Can you enter coordinates on a Garmin GPS?

Garmin devices allow you to use geographical coordinates as a destination.


2 Answers

You should get the location with javascript not PHP. PHP is only capable of doing an IP lookup which is the least accurate method for determining location.

The way navigator.geolocation.getCurrentPosition() works is it uses the most accurate data currently available. In the case of a mobile device it will use GPS first if enabled, then wi-fi.

If native GPS is enabled javascript will access that data instead of the wi-fi data, but there is no way of preventing a check against the wi-fi data if the GPS data isn't available.

Your best solution is to check the accuracy field and if it's not within a range you're happy with ask the user to enable GPS.

Alternatively if you're building a hybrid app, most of the frameworks (PhoneGap .etc.) have APIs to query the device GPS directly. Use PhoneGap to Check if GPS is enabled

like image 170
eddiec Avatar answered Oct 09 '22 00:10

eddiec


Geolocation API does not expose a direct way to check whether GPS is on or off, but you can catch the errors of geolocation and base on error type can draw conclusions from there.

E.g. POSITION_UNAVAILABLE (2) if the network is down or the positioning satellites can’t be contacted. But its not sure short way you have to handle some conditions!

I will suggest use watchPostion { i agree its meant to watch and continuous to locate position} u can keep it on and if GPS throw the error u can prompt custom alert to make user turn on the GPS device/wifi/internet .. and if its come to success callback u can clear the watch.

 var watch =null;
 function success(position)
{
   var lat = position.coords.latitude;
   var lon= position.coords.longitude;
   if (watch != null ) 
 /*Need to take care .. as maybe there is no gps and user 
  want it off so keep attempt 3 times or some kind a way out otherwise it will 
  infinite loop */
    {
        navigator.geolocation.clearWatch(watch);
        watch = null;
    }

}
function getLatLon()
{
    var geolocOK = ("geolocation" in navigator);
    if ( geolocOK ) 
    {
        var option = {enableHighAccuracy:true, maximumAge: 0,timeout:10000 };
        watch =  navigator.geolocation.watchPosition(success, fails,  option);
    }
    else {
        //disable the current location?  
    }
}
function fails()
{
    alert("please turn on the GPS !");
}
getLatLon(); 
like image 42
Neha Avatar answered Oct 09 '22 00:10

Neha