我正在尝试将 html5 地理定位 API 与 Meteor 一起使用。我正在使用:
navigator.geolocation.getCurrentPosition(handle_geolocation_query);
在我的 js 中,但它似乎不起作用 - 我认为它可能与 Meteor 的计时器(http://docs.meteor.com/#timers)限制有关。有什么想法吗?
问问题
1565 次
1 回答
2
谢谢@lashleigh,这是一个加载问题
这是对我有用的代码(我正在使用 Modernizr.js 来检测地理位置)
if (Meteor.is_client) {
Session.set('loc','?');
//alert(Modernizr.geolocation);
function foundLocation(location) {
console.log(location);
Session.set('loc','lat: '+location.coords.latitude+', lan: '+ location.coords.longitude);
}
function noLocation() {
alert('no location');
}
Template.hello.greeting = function () {
var output;
if (Modernizr.geolocation) {
navigator.geolocation.getCurrentPosition(foundLocation, noLocation);
outpout = Session.get('loc');
}
return Session.get('loc');
};
}
于 2012-04-25T06:07:54.743 回答