晴明的博客园 GitHub      CodePen      CodeWars     

[javascript][填坑]地理位置

function getLocation(callback){
if(navigator.geolocation){
navigator.geolocation.getCurrentPosition(
function(p){
callback(p.coords.latitude, p.coords.longitude);
},
function(e){
var msg = e.code + "\n" + e.message;
}
);
}
}

posted @ 2016-02-16 01:05  晴明桑  阅读(113)  评论(0编辑  收藏  举报