天天看點

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也不可以了,請問有什麼好的穩定的方法呢~~?