H5-geolocation学习
生活随笔
收集整理的這篇文章主要介紹了
H5-geolocation学习
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
geolocation——定位PC——IP地址精度比較低IP庫(kù)Chrome -> Google手機(jī)——GPSwindow.navigator.geolocation單次 getCurrentPosition(成功, 失敗, 參數(shù))enableHighAccuracy 高精度模式——更慢、更費(fèi)電timeout 超時(shí)maximumAge 緩存時(shí)間結(jié)果:latitude/longitude 緯度/經(jīng)度altitude 海拔高度accuracy 精確度altitudeAccuracy 高度精確度heading 朝向speed 速度監(jiān)聽(tīng) watchPosition(成功, 失敗, 參數(shù))
demo;
<!DOCTYPE html> <html><head><meta charset="utf-8"><script type="text/javascript">window.οnlοad=function (){let oBtn=document.getElementById('btn1');oBtn.οnclick=function (){if(window.navigator.geolocation){navigator.geolocation.getCurrentPosition(res=>{alert('成功');}, err=>{alert('失敗');}, {/*enableHighAccuracy //高精度模式timeout //超時(shí)時(shí)間maximumAge //緩存*/});}else{alert('你的瀏覽器不支持定位');}};};</script><title></title></head><body><input type="button" name="" value="定位" id="btn1"></body> </html>
轉(zhuǎn)載于:https://www.cnblogs.com/chaofei/p/8052552.html
總結(jié)
以上是生活随笔為你收集整理的H5-geolocation学习的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: 前端-html省份、地市级联
- 下一篇: [Odoo] Report PDF 分页