这是我获取地理位置的代码。它可以在Windows上运行,但不能在运行Manjaro KDE 17.1.1的笔记本电脑上使用。
每次我尝试检查自己的位置时,都会收到一条警报,提示浏览器无法提取位置,甚至以为当提示时我已允许它。
It is deployed to Heroku here.
var locationButton = $('#send-location');
locationButton.on('click', function() {
if (!navigator.geolocation) {
return alert('Geolocation not supported by your browser');
}
navigator.geolocation.getCurrentPosition(
function(position) {
console.log(position);
},
function() {
alert('Unable to fetch location');
}
);
});