天天看点

html5获取经纬度失败,h5获取经纬度有问题

function justify_location(){

if(navigator.geolocation) {

// 支持

console.log("支持地理位置接口");

} else {

// 不支持

console.log("不支持地理位置接口");

}

}

function agree_obtain_location(){

var option = {

enableHighAccuracy : true,

timeout : Infinity,

maximumAge : 0

};

navigator.geolocation.getCurrentPosition(geoSuccess,geoError,option);

}

function geoSuccess(event) {

console.log(event.coords.latitude + ', ' + event.coords.longitude);

lat=event.coords.latitude;

lng=event.coords.longitude;

console.log(lat,lng)

}

function geoError(event) {

console.log("Error code " + event.code + ". " + event.message);

}

justify_location();

agree_obtain_location();

用这个方法,不稳定,有时候可以,有时候不行,打包成app也不可以了,请问有什么好的稳定的方法呢~~?