主頁 > 知識庫 > HTML5 Geolocation API的正確使用方法

HTML5 Geolocation API的正確使用方法

熱門標簽:ai電銷機器人連接網(wǎng)關 漳州人工外呼系統(tǒng)排名 中紳電銷智能機器人 農(nóng)村住宅地圖標注 鄭州電銷外呼系統(tǒng)違法嗎 濟南辦理400電話 威海營銷外呼系統(tǒng)招商 鶴壁手機自動外呼系統(tǒng)怎么安裝 跟電銷機器人做同事

Geolocation是HTML5標準下的一個Web API,利用它可以獲取設備的當前位置信息(坐標),此API具有三個方法:getCurrentPosition、watchPosition和clearWatch,其中最常用的是getCurrentPosition方法,剩下兩個方法需要搭配使用!

使用方法:

瀏覽器兼容性檢測:

該api通過navigator.geolocation對象發(fā)布,只有在此對象存在的情況下,才可以使用它的地理定位服務,檢測方法如下:

if (navigator.geolocation) {
    // 定位代碼寫在這里
} else {
    alert('Geolocation is not supported in your browser')
}

獲取用戶的當前位置:

使用getCurrentLocation方法即可獲取用戶的位置信息,該方法有三個參數(shù):

參數(shù)列表 類型 說明
handleSuccess Function 成功時調用函數(shù)handleSuccess
handleError Function 失敗時調用函數(shù)handleError
options Object 初始化參數(shù)

// 初始化參數(shù)
const options = {
  // 高精確度: true / false
  enableHighAccuracy: true,
  // 等待響應的最長時間 單位:毫秒
  timeout: 5 * 1000,
  // 應用程序愿意接受的緩存位置的最長時間
  maximumAge: 0
}

// 成功回調函數(shù) : data包含位置信息
const handleSuccess = data => console.log(data)

// 失敗回調函數(shù) : error包含錯誤信息
const handleError = error => console.log(error)

if (navigator.geolocation) {
    // 定位代碼寫在這里
    navigator.geolocation.getCurrentPosition(handleSuccess, handleError, options)
} else {
    alert('Geolocation is not supported in your browser')
}

下面是具有更多細節(jié)的代碼:

const handleSuccess = data => {
  const { 
    coords, // 位置信息
    timestamp // 成功獲取位置信息時的時間戳
  } = data

  const {
    accuracy, // 返回結果的精度(米)
    altitude, // 相對于水平面的高度
    altitudeAccuracy, // 返回高度的精度(米)
    heading, // 主機設備的行進方向,從正北方向順時針方向
    latitude, // 緯度
    longitude, // 經(jīng)度
    speed // 設備的行進速度
  } = coords

  // 打印出來看看
  console.log('timestamp =', timestamp)
  console.log('accuracy =', accuracy)
  console.log('altitude =', altitude)
  console.log('altitudeAccuracy =', altitudeAccuracy)
  console.log('heading =', heading)
  console.log('latitude =', latitude)
  console.log('longitude =', longitude)
  console.log('speed =', speed)
}

const handleError = error => {
  switch (error.code) {
    case 1:
      console.log('位置服務請求被拒絕')
      break
    case 2:
      console.log('暫時獲取不到位置信息')
      break
    case 3:
      console.log('獲取信息超時')
      break
    case 4:
      console.log('未知錯誤')
      break
  }
}

const opt = {
  // 高精確度: true / false
  enableHighAccuracy: true,
  // 等待響應的最長時間 單位:毫秒
  timeout: 5 * 1000,
  // 應用程序愿意接受的緩存位置的最大年限
  maximumAge: 0
}

if (navigator.geolocation) {
  navigator.geolocation.getCurrentPosition(handleSuccess, handleError, opt)
} else {
  alert('Geolocation is not supported in your browser')
}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。

標簽:紅河 咸陽 甘南 文山 惠州 萍鄉(xiāng) 蘇州 營口

巨人網(wǎng)絡通訊聲明:本文標題《HTML5 Geolocation API的正確使用方法》,本文關鍵詞  HTML5,Geolocation,API,的,正確,;如發(fā)現(xiàn)本文內容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《HTML5 Geolocation API的正確使用方法》相關的同類信息!
  • 本頁收集關于HTML5 Geolocation API的正確使用方法的相關信息資訊供網(wǎng)民參考!
  • 推薦文章