如果我在 Firefox 中打开网站http://www.reebok.com/ru-RU/search/?q=mens,将会弹出窗口要求我分享我的位置。这是关于它的链接http://www.mozilla.org/en/firefox/geolocation/ 我如何在我的网站上添加它?
问问题
92 次
1 回答
1
我猜 reebok 网站正在使用 HTML5 Geolocation API。
尝试下面的代码,它应该重新创建行为。代码直接取自此页面。
https://developer.mozilla.org/en-US/docs/Web/API/Geolocation.getCurrentPosition
var options = {
enableHighAccuracy: true,
timeout: 5000,
maximumAge: 0
};
function success(pos) {
var crd = pos.coords;
console.log('Your current position is:');
console.log('Latitude : ' + crd.latitude);
console.log('Longitude: ' + crd.longitude);
console.log('More or less ' + crd.accuracy + ' meters.');
};
function error(err) {
console.warn('ERROR(' + err.code + '): ' + err.message);
};
navigator.geolocation.getCurrentPosition(success, error, options);
于 2013-09-03T20:13:39.397 回答