},fail=>{
console.log(fail)//获取失败的原因
},{
//可增加的4个配置参数
enableHighAccuracy:true,//高精度
timeout:5000,//超时时间,以ms为单位
maximumAge:246060*1000,//位置缓存时间,以ms为单位
})
位置获取成功后返回的 success.coords 的属性
-
coords.latitude - 纬度
-
coords.longitude - 经度
-
coords.altitude - 海拔
-
coords.speed - 速度
-
coords.accuracy - 经纬度精度
-
coords.altitudeAccuracy - 海拔精度
-
coords.heading - 方向,从正北开始的弧度数
**watchPosition:**不断获取位置
navigator.geolocation.watchPosition(
success=>{
console.log(success.coords)//包含用户位置速度海拔等信息
},
fail=>{
console.log(fail)//定位失败原因
},
{
enableHighAccuracy:true,//高精度
timeout:60*1000,//超时,以ms为单位
maximumAge:246060*1000,/