Bootstrap

vue中获取地理位置信息的方法

navigator.geolocation.getCurrentPosition(res => {
   
    console.log(res);
  }, err => {
   
    console.log(err)
;