js如何获取GPS的坐标

不多废话,直接上代码吧

1.这个比较简单

 function getLocation(){
        if(navigator.geolocation){
        //判断是否有这个对象
            navigator.geolocation.getCurrentPosition(function(pos){
                console.log("经度:"+pos.coords.longitude+
                "纬度:"+pos.coords.latitude)
            })
        }else{
            console.log("当前系统不支持GPS API")
        }
    }

2.比较全面的,其实没必要,看个人喜好吧

function getLocation(){
       var options={
           enableHighAccuracy:true, 
           maximumAge:1000
       }
       if(navigator.geolocation){
           //浏览器支持geolocation
           // alert("浏览器支持geolocation");
           navigator.geolocation.getCurrentPosition(onSuccess,onError,options);

        }else{
            //浏览器不支持geolocation
            alert("浏览器不支持geolocation");
        }
  }

获取成功时

 function onSuccess(pos){
        console.log("经度:"+pos.coords.longitude+
                "纬度:"+pos.coords.latitude)
 }

获取失败时,这个错误故意写得详细点,让你明白为什么失败

function onError(error){
               switch(error.code){

                   case 1:
                   alert("位置服务被拒绝");
                   break;

                   case 2:
                   alert("暂时获取不到位置信息");
                   break;

                   case 3:
                   alert("获取信息超时");
                   break;

                   case 4:
                    alert("未知错误");
                   break;
               }

           }

你可能感兴趣的:(js如何获取GPS的坐标)