js前端獲取用戶位置及ip屬地信息
寫在前面
想要像一些平臺那樣顯示用戶的位置信息,例如某省市那樣。那麼這是如何做到的, 據說這個位置信息的準確性在通信網絡運營商那裡?先不管,先實踐嘗試下能不能獲取。
嘗試一:navigator.geolocation
嘗試瞭使用 navigator.geolocation,但未能成功拿到信息。
getGeolocation(){ if ('geolocation' in navigator) { /* 地理位置服務可用 */ console.log('地理位置服務可用') navigator.geolocation.getCurrentPosition(function (position) { console.dir('回調成功') console.dir(position) // 沒有輸出 console.dir(position.coords.latitude, position.coords.longitude) }, function (error) { console.error(error) }) } else { /* 地理位置服務不可用 */ console.error('地理位置服務可用') } }
嘗試二:sohu 的接口
嘗試使用 pv.sohu.com/cityjson?ie… 獲取用戶位置信息, 成功獲取到信息,信息樣本如下:
{"cip": "14.11.11.11", "cid": "440000", "cname": "廣東省"}
// 需要做跨域處理 getIpAndAddressSohu(){ // config 是配置對象,可按需設置,例如 responseType,headers 中設置 token 等 const config = { headers: { Accept: 'application/json', 'Content-Type': 'application/json;charset=UTF-8', }, } axios.get('/apiSohu/cityjson?ie=utf-8', config).then(res => { console.log(res.data) // var returnCitySN = {"cip": "14.11.11.11", "cid": "440000", "cname": "廣東省"}; const info = res.data.substring(19, res.data.length - 1) console.log(info) // {"cip": "14.11.11.11", "cid": "440000", "cname": "廣東省"} this.ip = JSON.parse(info).cip this.address = JSON.parse(info).cname }) }
調試的時候,做瞭跨域處理。
proxy: { '/apiSohu': { target: 'http://pv.sohu.com/', // localhost=>target changeOrigin: true, pathRewrite: { '/apiSohu': '/' } }, }
下面是一張獲取到位置信息的效果圖:
嘗試三:百度地圖的接口
需要先引入百度地圖依賴,有一個參數 ak 需要註意,這需要像管理方申請。例如下方這樣
<script src="https://api.map.baidu.com/api?v=2.0&ak=3ufnnh6aD5CST"></script>
getLocation() { /*獲取當前位置(瀏覽器定位)*/ const $this = this; var geolocation = new BMap.Geolocation();//返回用戶當前的位置 geolocation.getCurrentPosition(function (r) { if (this.getStatus() == BMAP_STATUS_SUCCESS) { $this.city = r.address.city; console.log(r.address) // {city: '廣州市', city_code: 0, district: '', province: '廣東省', street: '', …} } }); }
function getLocationBaiduIp(){/*獲取用戶當前位置(ip定位)*/ function myFun(result){ const cityName = result.name; console.log(result) // {center: O, level: 12, name: '廣州市', code: 277} } var myCity = new BMap.LocalCity(); myCity.get(myFun); }
成功用戶的省市位置,以及經緯度坐標,但會先彈窗征求用戶意見。
寫在後面
嘗試結果不太理想,sohu 的接口內部是咋實現的,這似乎沒有彈起像下面那樣的征詢用戶意見的提示。
而在 navigator.geolocation 、 BMap.Geolocation() 和 BMap.LocalCity() 中是彈起瞭的。
用別人的接口總歸是沒多大意思,也不知道不用征求用戶意見是咋實現的。
經實測 sohu 的接口、BMap.Geolocation() 和 BMap.LocalCity() 都可以拿到用戶的位置信息(省市、經緯度等)。
以上就是js前端獲取用戶位置及ip屬地信息的詳細內容,更多關於js獲取用戶位置ip屬地的資料請關註WalkonNet其它相關文章!
推薦閱讀:
- 利用JavaScript獲取用戶IP屬地方法詳解
- 使用微信小程序制作核酸檢測點查詢工具
- vue+elementUi實現點擊地圖自動填充經緯度以及地點
- node.js讀寫json文件的方法
- Mock.js在Vue項目中的使用小結