這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)?lái)有關(guān)如何在HTML5中使用Geolocation API,文章內(nèi)容豐富且以專(zhuān)業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)公司!專(zhuān)注于網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開(kāi)發(fā)、成都小程序開(kāi)發(fā)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶(hù)創(chuàng)新互聯(lián)還提供了太子河免費(fèi)建站歡迎大家使用!
Geolocation是HTML5標(biāo)準(zhǔn)下的一個(gè)Web API,利用它可以獲取設(shè)備的當(dāng)前位置信息(坐標(biāo)),此API具有三個(gè)方法:getCurrentPosition、watchPosition和clearWatch,其中最常用的是getCurrentPosition方法,剩下兩個(gè)方法需要搭配使用!
使用方法:
瀏覽器兼容性檢測(cè):
該api通過(guò)navigator.geolocation對(duì)象發(fā)布,只有在此對(duì)象存在的情況下,才可以使用它的地理定位服務(wù),檢測(cè)方法如下:
if (navigator.geolocation) { // 定位代碼寫(xiě)在這里 } else { alert('Geolocation is not supported in your browser') }
獲取用戶(hù)的當(dāng)前位置:
使用getCurrentLocation方法即可獲取用戶(hù)的位置信息,該方法有三個(gè)參數(shù):
參數(shù)列表 | 類(lèi)型 | 說(shuō)明 |
handleSuccess | Function | 成功時(shí)調(diào)用函數(shù)handleSuccess |
handleError | Function | 失敗時(shí)調(diào)用函數(shù)handleError |
options | Object | 初始化參數(shù) |
// 初始化參數(shù) const options = { // 高精確度: true / false enableHighAccuracy: true, // 等待響應(yīng)的最長(zhǎng)時(shí)間 單位:毫秒 timeout: 5 * 1000, // 應(yīng)用程序愿意接受的緩存位置的最長(zhǎng)時(shí)間 maximumAge: 0 } // 成功回調(diào)函數(shù) : data包含位置信息 const handleSuccess = data => console.log(data) // 失敗回調(diào)函數(shù) : error包含錯(cuò)誤信息 const handleError = error => console.log(error) if (navigator.geolocation) { // 定位代碼寫(xiě)在這里 navigator.geolocation.getCurrentPosition(handleSuccess, handleError, options) } else { alert('Geolocation is not supported in your browser') }
下面是具有更多細(xì)節(jié)的代碼:
const handleSuccess = data => { const { coords, // 位置信息 timestamp // 成功獲取位置信息時(shí)的時(shí)間戳 } = data const { accuracy, // 返回結(jié)果的精度(米) altitude, // 相對(duì)于水平面的高度 altitudeAccuracy, // 返回高度的精度(米) heading, // 主機(jī)設(shè)備的行進(jìn)方向,從正北方向順時(shí)針?lè)较? latitude, // 緯度 longitude, // 經(jīng)度 speed // 設(shè)備的行進(jìn)速度 } = coords // 打印出來(lái)看看 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('位置服務(wù)請(qǐng)求被拒絕') break case 2: console.log('暫時(shí)獲取不到位置信息') break case 3: console.log('獲取信息超時(shí)') break case 4: console.log('未知錯(cuò)誤') break } } const opt = { // 高精確度: true / false enableHighAccuracy: true, // 等待響應(yīng)的最長(zhǎng)時(shí)間 單位:毫秒 timeout: 5 * 1000, // 應(yīng)用程序愿意接受的緩存位置的最大年限 maximumAge: 0 } if (navigator.geolocation) { navigator.geolocation.getCurrentPosition(handleSuccess, handleError, opt) } else { alert('Geolocation is not supported in your browser') }
上述就是小編為大家分享的如何在HTML5中使用Geolocation API了,如果剛好有類(lèi)似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。