English 中文(简体)
每分钟向服务器发送 gps 坐标
原标题:Send gps coordinates to server every minute

我用 jQueryMobile 设计一个 PhoneGap 应用程序。 在我的应用程序中, 我每四分钟需要发送一个用户当前地理定位 GPS 坐标到服务器 。 我该怎么做?

这是我一直在使用的代码, 但它没有发送任何数据。 我怎样才能修改这个来让它生效?

document.addEventListener("deviceready", onDeviceReady, false);

var watchID = null;

// PhoneGap is ready
//
function onDeviceReady() {
    // Update every 4 minute
    var options = { maximumAge: 240000, timeout: 5000, enableHighAccuracy: true };
    watchID = navigator.geolocation.watchPosition(onSuccess, onError, options);
}

// onSuccess Geolocation
//
function onSuccess(position) {
   var lat = Position.coords.latitude;
    var lng = Position.coords.longitude;


    jQuery.ajax({
        type: "POST", 
        url:  serviceURL+"locationUpdate.php", 
        data:  x= +lng+ &y= +lat,
        cache: false
    });
}

// onError Callback receives a PositionError object
//
function onError(error) {
    alert( code:      + error.code    +  
  +
           message:   + error.message +  
 );
}
最佳回答

而不是打电话给Interval, 让电话gap做给你。

// onSuccess Callback
//   This method accepts a `Position` object, which contains the current GPS coordinates
//
function onSuccess(position) {
    var element = document.getElementById( geolocation );
    element.innerHTML =  Latitude:    + position.coords.latitude      +  <br />  +
                     Longitude:   + position.coords.longitude     +  <br />  +
                     <hr />       + element.innerHTML;
}

// onError Callback receives a PositionError object
//
function onError(error) {
    alert( code:      + error.code    +  
  +
       message:   + error.message +  
 );
}

// Options: retrieve the location every 3 seconds
//
var watchID = navigator.geolocation.watchPosition(onSuccess, onError, { frequency: 3000 });

http://docs.phonegap.com/en/1.0.0/phonegap_geoplace_geoplace_geoplace.md.html#geoplace.watchposition

问题回答

暂无回答




相关问题
Query about getting GPS Location

Is there any way to set Criteria for LocationProvider depending upon the network provider, means determining whether the network provider supports CellSite mode or autonomous mode or any other mode. ...

Android google map myLocationOverlay disappears?

I try to add myLocationOverlay to the map. It was not there at first, then when I send the gps position from the ddms, then the blue shining dot appear. However, after awhile, the blue dot disappear ...

Accessing GPS Data From a .Net Winform Application

Does anyone out there have any experience programatically retreiving the lat/long from a GPS attached to a mobile PC? A team I m on is currently looking at hardware options--as the programmer who ...

Can Google Maps plot points based on Hours Minutes Seconds

I m trying to plot out GPS data that is given to me in Hour Minute Second degree format. Will GLatLng take it in this form or do I need to convert it first. Having a hard time finding anything on the ...

热门标签