摘要:是標(biāo)準(zhǔn)下的一個(gè)利用它可以獲取設(shè)備的當(dāng)前位置信息坐標(biāo),此具有三個(gè)方法和,其中最常用的是方法,剩下兩個(gè)方法需要搭配使用使用方法瀏覽器兼容性檢測(cè)該通過對(duì)象發(fā)布,只有在此對(duì)象存在的情況下,才可以使用它的地理定位服務(wù),檢測(cè)方法如下定位代碼寫在這里獲取
Geolocation是HTML5標(biāo)準(zhǔn)下的一個(gè)Web API,利用它可以獲取設(shè)備的當(dāng)前位置信息(坐標(biāo)),此API具有三個(gè)方法:getCurrentPosition、watchPosition和clearWatch,其中最常用的是getCurrentPosition方法,剩下兩個(gè)方法需要搭配使用!
使用方法:該api通過navigator.geolocation對(duì)象發(fā)布,只有在此對(duì)象存在的情況下,才可以使用它的地理定位服務(wù),檢測(cè)方法如下:
if (navigator.geolocation) { // 定位代碼寫在這里 } else { alert("Geolocation is not supported in your browser") }
使用getCurrentLocation方法即可獲取用戶的位置信息,該方法有三個(gè)參數(shù):
參數(shù)列表 | 類型 | 說明 |
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) { // 定位代碼寫在這里 navigator.geolocation.getCurrentPosition(handleSuccess, handleError, options) } else { alert("Geolocation is not supported in your browser") }
const handleSuccess = data => { const { coords, // 位置信息 timestamp // 成功獲取位置信息時(shí)的時(shí)間戳 } = data const { accuracy, // 返回結(jié)果的精度(米) altitude, // 相對(duì)于水平面的高度 altitudeAccuracy, // 返回高度的精度(米) heading, // 主機(jī)設(shè)備的行進(jìn)方向,從正北方向順時(shí)針方向 latitude, // 緯度 longitude, // 經(jīng)度 speed // 設(shè)備的行進(jìn)速度 } = 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("位置服務(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") }
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/99682.html
摘要:如果應(yīng)用程序不再需要接受有關(guān)用戶的持續(xù)位置更新,則只需調(diào)用函數(shù),如下所示表示一個(gè)唯一的監(jiān)視請(qǐng)求以便將來取消監(jiān)視。 GeolocationAPI學(xué)習(xí),我寫的挺枯燥的,直接跳到最后看示例。 5.1 位置信息 HTML5 Geolocation API的使用方法相當(dāng)簡(jiǎn)單。請(qǐng)求一個(gè)位置信息,如果用戶同意,瀏覽器就會(huì)返回位置信息,該位置信息是通過支持HTML5地理定位功能的底層設(shè)備(手機(jī)、筆記本...
摘要:那么如何實(shí)現(xiàn)一個(gè)距離追蹤器呢我的思路是這樣的,前提是瀏覽器支持地理定位,在這個(gè)基礎(chǔ)上,獲取用戶位置,更新用戶位置,計(jì)算距離,顯示到頁面,這樣就簡(jiǎn)單實(shí)現(xiàn)了一個(gè)距離追蹤器,為了用戶更清楚地看到當(dāng)前位置,這里接入了百度地圖。 HTML5 Geolocation(地理定位)用于定位用戶的位置。那么如何實(shí)現(xiàn)一個(gè)距離追蹤器呢?我的思路是這樣的,前提是瀏覽器支持h5地理定位,在這個(gè)基礎(chǔ)上,獲取用戶位...
閱讀 3567·2021-11-22 15:11
閱讀 4655·2021-11-18 13:15
閱讀 2714·2019-08-29 14:08
閱讀 3588·2019-08-26 13:49
閱讀 3104·2019-08-26 12:17
閱讀 3298·2019-08-26 11:54
閱讀 3122·2019-08-26 10:58
閱讀 2041·2019-08-26 10:21