我的地理位置无法在iPhone中使用

时间:2018-12-24 13:10:44

标签: ios iphone geolocation

即使在允许浏览器控制位置之后,也总是要对getCurrentPosition进行错误回调

if(navigator.geolocation)
            {

                navigator.geolocation.getCurrentPosition(getLatLong,noLocation,{enableHighAccuracy: true});

            }


    }
     function getLatLong(pos)
    {

        lat1=pos.coords.latitude;
        long1=pos.coords.longitude;


    }

0 个答案:

没有答案