无法应对navigator.geolocation的异步性质

时间:2010-04-25 04:49:38

标签: javascript geolocation w3c

我在firefox 3.6中使用了navigator.geolocation.getCurrentPosition(function)api。当我试图反复调用这个方法时,我发现它有时会起作用,有时则不然。我认为问题是由于它的异步回调性质。我可以看到回调函数在某个时刻被调用,但我的外部函数已经退出,所以我无法捕获位置坐标的值。

我对javascript很新,所以我假设其他javascript编码器可能已经找到了如何处理它。请帮忙。

编辑:这是我正在使用的示例代码

<script type="text/javascript">
   function getCurrentLocation() {
     var currLocation;
      if(navigator.geolocation) {
         navigator.geolocation.getCurrentPosition(function(position) {
          currLocation = new google.maps.LatLng(position.coords.latitude,position.coords.longitude);
        });
       }
       return currLocation; // this returns undefined sometimes. I need help here
}    
</script>

编辑2: 谢谢大家的回答,我希望我能选择所有答案为“已接受”,但不能这样做。

现在我面临另一个问题。我每3秒调用一次navigator.geolocation.getCurrentPosition,但响应在10到15个回复后停止。任何人都有任何想法?

再次感谢

5 个答案:

答案 0 :(得分:5)

你试图让它同步,但它不起作用。如您所见,无法保证在函数返回时设置currLocation。你现在可能有类似的东西:

var loc = getCurrentLocation();
//doSomethingWith loc

将您的功能更改为:

function getCurrentLocation(callback) {
   if(navigator.geolocation) {
      navigator.geolocation.getCurrentPosition(function(position) {
         callback(new google.maps.LatLng(position.coords.latitude,
                                       position.coords.longitude));
       });
    }
    else {
       throw new Error("Your browser does not support geolocation.");     
    }
}     

和客户端代码:

getCurrentLocation(function(loc)
{
  //doSomethingWith loc
});

答案 1 :(得分:4)

是的,您对操作的回调性质有疑问。您无法调用getCurrentLocation()函数并期望它将同步返回。我甚至感到惊讶,它偶尔会起作用。

在使用异步调用时,您必须使用稍微不同的范例。您可能应该调用您的函数plotCurrentLocation()并执行类似以下示例的操作:

function plotCurrentLocation(map) {
   if (navigator.geolocation) {
      navigator.geolocation.getCurrentPosition(function(position) {
         var currLocation = new google.maps.LatLng(position.coords.latitude,position.coords.longitude);

         // plot the currLocation on Google Maps, or handle accordingly:

         new google.maps.Marker({ title: 'Current Location',
                                  map: map, 
                                  position: currLocation });

         map.setCenter(currLocation);
      });
   }
}

注意传递给map函数的plotCurrentLocation()参数如何可用于内部函数。这是有效的,因为JavaScript有closures


<强>更新

其他答案建议的回调方法是通过添加另一层抽象来解决这个问题的另一种方法。

答案 2 :(得分:3)

最好使用:

<script type="text/javascript">
function getCurrentLocation(callback) {
  if(!navigator.geolocation) return;
  navigator.geolocation.getCurrentPosition(function(position) {
    var currLocation = new google.maps.LatLng(position.coords.latitude,position.coords.longitude);
    callback(currLocation);
  });
}
</script>

...

<script type="text/javascript">
getCurrentLocation(function(currLocMap){
  // do something with map now that it is ready..
});
</script>

答案 3 :(得分:2)

您可以使用Promise:

var lat,lon;
var promise1 = new Promise(function(resolve, reject) {
    navigator.geolocation.getCurrentPosition(function(pos){
        lat = pos.coords.latitude
        lon = pos.coords.longitude
        resolve({lat,lon});
    }) 
})

promise1.then(function(value) {
      console.log(value.lat,value.lon)  
});

答案 4 :(得分:0)

您还可以为getCurrentPosition

编写包装函数
requestPosition() {

  // additionally supplying options for fine tuning, if you want to
  var options = {
    enableHighAccuracy: true,
    timeout:    5000,   // time in millis when error callback will be invoked
    maximumAge: 0,      // max cached age of gps data, also in millis
  };

  return new Promise(function(resolve, reject) {
    navigator.geolocation.getCurrentPosition(
      pos => { resolve(pos); }, 
      err => { reject (err); }, 
      options);
  });
}

这使您可以选择处理方式(async/awaitthen()等);例如

async componentDidMount(){

  position = await requestPosition();

}

那不是很漂亮:-)

(只想添加到@AymanBakris答案中,但是所有这些内容在一个评论中都将很尴尬^^)