1

我正在使用地理定位创建一个网络应用程序。到目前为止,我已经设置并工作了,所以当用户访问时,他们会被提示允许位置服务,然后会显示一个警报(不是永久性的,仅用于测试目的。)

我正在使用这个:

navigator.geolocation.getCurrentPosition(foundLocation, noLocation, {enableHighAccuracy:true});

function foundLocation(position)
{
    var lat = position.coords.latitude;
    var long = position.coords.longitude;
    alert('We know you are here '+ lat +','+ long);
}
function noLocation()
{
    alert('Could not find location');
}

然后我在此之外有一个名为“地址”的变量,它是 API 调用的 URL:

address = "http://api.wunderground.com/api/geolookup/hourly/conditions/astronomy/alerts/forecast/q/[LOCATION].json"

我的问题是如何从函数中获取latlong退出并将它们插入到 URL 中?我尝试了几种方法,但它们都返回“未定义”,所以我显然做错了。

任何帮助是极大的赞赏!

谢谢你。

4

2 回答 2

2

您必须了解 javascript 变量的范围,请阅读这篇文章:JavaScript 中变量的范围是什么?

var address = '';

function setLocation(position)
{
    var lat = position.coords.latitude;
    var long = position.coords.longitude;
    address = "http://api.wunderground.com/api/geolookup/hourly/conditions/astronomy/alerts/forecast/q/" + lat + "," + long + ".json";
}

此外,还有更好的方法来解决您的问题。最简单的方法是创建一个具有唯一名称的全局对象,将变量作为该对象的属性以及更改变量的方法,例如:

var geolocation = {};
geolocation.latitude = 0;
geolocation.longitude = 0;
geolocation.address = "";
geolocation.setLocation = function(position) {
    geolocation.latitude = position.coords.latitude;
    geolocation.longitude = position.coords.longitude;
    geolocation.address = "http://api.wunderground.com/api/geolookup/hourly/conditions/astronomy/alerts/forecast/q/" + geolocation.latitude + "," + geolocation.longitude + ".json";
};
geolocation.show = function() {
  alert(geolocation.latitude + " " geolocation.longitude + " " + geolocation.address);
};

等等。现在,如果您使用,文件中的任何地方:

geolocation.setLocation(position);
geolocation.show();

它将显示来自全局对象的新值。

更新

请记住,如果没有围绕它的包装器,javascript 中的变量或对象将是全局的,例如另一个函数或对象。

于 2012-09-13T14:58:05.303 回答
1

你不能像这样直接从函数中更新地址吗?

navigator.geolocation.getCurrentPosition(foundLocation, noLocation, {enableHighAccuracy:true});
var address = "http://api.wunderground.com/api/geolookup/hourly/conditions/astronomy/alerts/forecast/q/[LOCATION].json"

function foundLocation(position)
{
    var lat = position.coords.latitude;
    var long = position.coords.longitude;
    alert('We know you are here '+ lat +','+ long);
    address = address.replace('[LOCATION]', lat + ',' + long);
}
于 2012-09-13T14:56:19.100 回答