欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Html5定位终极解决方案

程序员文章站 2022-07-01 14:17:13
这篇文章主要介绍了Html5定位终极解决方案,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧... 20-02-05...

背景

到新公司的第二个项目,就是和小伙伴们一起做一个h5的商城,主要在微信内,但也要考虑到其他浏览器。其中,首页需要根据当前用户的经纬度找到距离最近的门店并展示。前端需要做的工作就是获取用户的经纬度然后查询后台接口并渲染页面。

目标与分析

我们的目标是经过封装之后,只需要调用一个方法就可以拿到返回的位置信息。

我们需要做的事情是,针对不同的端(微信h5和其他浏览器环境)封装不同的类,再通过一个方法通过 ua 区分,调用不同环境对应的类获取位置。

在微信内部,经过反复的实践之后,不论是通过原生的 html5 定位,还是通过第三方(如百度或腾讯地图) jsapi 获取位置,不仅定位时间长,甚至经常出现定位失败的情况,严重影响用户体验,尤其对于大部分信息流都依赖于用于位置的商城首页来说,是完全无法接受的。所以在微信内我们只有微信 sdk 这一种选择;

而对于浏览器端,通过第三方的地图 jsapi 或定位组件,可以稳定且较快速地获取位置信息,为了与微信内尽量保持一致,我们选择的是腾讯地图 jsapi。

解决方案

talk is cheap, show me the code. 废话不多说,直接上代码:

1. 在浏览器中,通过腾讯地图jsapi获取位置

1.1 在项目的 html 模版文件中引入腾讯地图 jsapi

<!-- index.html -->
<script charset="utf-8" src="https://map.qq.com/api/js?v=2.exp&key=腾讯地图key&referer=应用名称"></script>

说明:

使用腾讯地图 jsapi, 需要先去腾讯地图开放平台申请自己的账号,然后创建自己的应用,将腾讯地图key 和创建的应用名称替换上面的值。

1.2 调用获取位置接口,获取位置信息

为了方便复用,我们单独封装一个腾讯地图 jsapi 的类,命名为 tmap.js

// tmap.js
const qq = window.qq
var geolocation = null
if (qq && qq.maps) {
  // 初始化定位组件
  geolocation = new qq.maps.geolocation(
    'qvlbz-yuulr-oumw7-wkxfd-4suws-udbia',
    'mymap'
  )
}

class tmap {
  // 获取定位计数器 用于定位失败时累计次数 超过3次后不再继续,抛出定位失败错误
  getpositioncount = 0

  // 对外暴露的获取位置接口
  getlocation () {
    return new promise((resolve, reject) => {
      // 定位成功回调
      this.gettmaplocation(resolve, reject)
    })
  }

  // 调用腾讯地图获取位置
  gettmaplocation (success, fail) {
    const _self = this

    // 定位成功回调
    const showposition = position => {
      uni.setstorage({
        key: 'positiondata',
        data: position
      })
      success(position)
    }

    // 定位失败回调
    const showerr = (err) => 
      // 如果获取定位失败超过3次 抛出错误 否则继续获取定位信息
      if (this.getpositioncount > 3) {
        fail('超过3次 获取定位失败')
      } else {
        // 定位失败递归
        _self.getpositioncount = _self.getpositioncount + 1
        _self.gettmaplocation(success, fail)
      }
    }

    // 调用腾讯web定位组件获取位置信息
    if (geolocation) {
      geolocation.getiplocation(showposition, showerr, {
        timeout: 6000,  // 定位超时时长 单位ms
        failtipflag: true
      })
    }
  }
}

export default new tmap()

2. 在微信 webview 中, 通过微信sdk获取位置信息

2.1 微信 js-sdk 相关的准备工作
2.1.1 引入js文件

/**
 * 微信sdk异步加载
 * @param {*} src
 * @param {*} callback api接口
 */
export const handlerloadscript = callback => {
  const src = `https://res.wx.qq.com/open/js/jweixin-1.4.0.js`
  if (!(typeof callback === 'function')) {
    callback = function() {}
  }
  var check = document.queryselectorall(`script[src="${src}"]`)
  if (check.length > 0) {
    check[0].addeventlistener('load', function() {
      callback()
    })
    callback()
    return
  }
  var script = document.createelement('script')
  var head = document.getelementsbytagname('head')[0]
  script.type = 'text/javascript'
  script.charset = 'utf-8'
  script.src = src
  if (script.addeventlistener) {
    script.addeventlistener(
      'load',
      function() {
        callback()
      },
      false
    )
  } else if (script.attachevent) {
    script.attachevent('onreadystatechange', function() {
      var target = window.event.srcelement
      if (target.readystate === 'loaded') {
        callback()
      }
    })
  }
  head.appendchild(script)
}

2.1.2 注入权限验证配置
所有需要使用js-sdk的页面必须先注入配置信息,否则将无法调用。通常是通过后台接口获取配置信息。

/**
 * 注入权限验证配置
 * @param {object} 微信 js-sdk 权限验证配置
 */
export const wxconfiginfo = config => {
  wx.config({
    debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
    appid: config.appid,
    timestamp: parseint(config.timestamp),
    noncestr: config.noncestr,
    signature: config.signature,
    jsapilist: [   // 需要使用的 jsapi 列表
      ...,
      'getlocation'  // 获取地理位置
    ]
  })
}

2.2 调用 api 获取位置信息

 /**
 * 微信获取位置
 */
export const handlegetlocation = (config) => {
  return new promise((resolve, reject)=>{
    wxconfiginfo(config)
    wx.ready(function () {
      wx.getlocation({
        type: 'wgs84', // 默认为wgs84的gps坐标,如果要返回直接给openlocation用的火星坐标,可传入'gcj02'
        success: function (res) {
          console.warn('微信sdk定位成功', res)
          resolve({
            lat: res.latitude, // 纬度
            lng: res.longitude, // 经度
            speed: res.speed, // 速度,以米/每秒计
            accuracy: res.accuracy // 位置精度
          })
        },
        fail: function (err) {
          console.error('微信sdk定位失败', err)
          reject(err)
        }
      })
    })
    wx.error(function(err) {
      // config信息验证失败会执行error函数,如签名过期导致验证失败,具体错误信息可以打开config的debug模式查看,也可以在返回的res参数中查看,对于spa可以在这里更新签名。
      console.log('wxjsapi-error=', err)
      reject(`wxjsapi-error: ${err}`)
    })
  })

2.3 根据不同运行环境调用不同的定位方法

// public.js

/**
 * ua枚举
 */
const ua = {
  /**
   * 微信h5
   */
  wechat: 'wechat',
  /**
   * 支付宝h5
   */
  alipay: 'alipay',
  /**
   * 其他
   */
  others: 'others'
}


/**
 * 判断客户端运行环境 这里只判断微信和浏览器h5
 */
export const getuseragent = () => {
  var useragent = navigator.useragent.tolowercase()

  if (useragent.match(/alipay/i) == 'alipay') {
    return ua.alipay
  } else if (useragent.match(/micromessenger/i) == 'micromessenger') {
    return ua.wechat
  } else {
    return ua.others
  }
}
// js-sdk.js
/**
 * 唤起微信api
 * @param {*} _href 当前页面url
 * @param {*} options 分享信息
 * @param {*} apitype 调用api类型
 */
export const handlewxsdkcall = (_href, apitype, options) => {
  return new promise((resolve, reject)=>{
    // 通过后台接口获取配置信息
    wechatservivce.sign(_href)
      .then(res => {
        if (res) {
          if ( apitype === 'location' ) {
            handlegetlocation(res).then((res)=>{
              resolve(res)
            }).catch(err=>{
              reject(err)
            })
          }
        }
      })
      .catch(err => {
        reject(`err-sign: ${err}`)
        uni.showtoast({
          title: err.data.code + err.data.msg,
          mask: true,
          icon: 'none'
        })
      })
  })
}

// getlocation.js
import { getuseragent, handlerloadscript } from '@/module/utils'
import { handlewxsdkcall } from '@/module/utils/wechat/wxjsapisdk'
import ua from '@/module/enums/useragent'
import tmap from '@/module/utils/tmap'

/**
 * 对外暴露的获取位置方法
 * @return promise resolve一个 positiondata 对象 lat-纬度 lng-经度
 */
const getlocation = () => {
  return new promise((resolve, reject) => {
    console.log('进入全局获取用户位置方法')
    const storagedata = uni.getstoragesync('positiondata')
    const useragent = getuseragent()
    if (storagedata) {
      resolve(storagedata)
    } else {
      // 根据环境判断 如果在微信内使用微信sdk 其他使用腾讯地图定位组件
      if (useragent === ua.wechat) {
        handlerloadscript(() => {
          handlewxsdkcall(window.location.href, 'location').then((res) => {
            uni.setstoragesync('positiondata', res)
            resolve(res)
          }).catch(err => {
            reject(err)
          })
        })
      } else {
        tmap.getlocation().then(res => {
          uni.setstoragesync('positiondata', res)
          resolve(res)
        }).catch((err) => {
          reject(err)
        })
      }
    }
  })
}

export default getlocation

3. 页面调用

3.1 绑定方法到 vue 原型上

import getlocation from '@/module/utils/getlocation'
vue.prototype.$getlocation = getlocation

3.2 在页面组件中调用

onshow() {
  // 获取位置信息后请求后台接口
  this.$getlocation()
    .then(res => {
      console.warn('首页获取位置成功', res)
      this.latitude = res.lat
      this.longitude = res.lng
      // 这里根据获取到的经纬度请求后台接口...
    })
    .catch(err => {
      console.error('首页获取位置失败', err)
      // 错误处理
    })
}

总结

遇到的坑以及需要注意的点:

使用微信sdk获取位置信息需要按顺序完成以下步骤:

  • 异步加载微信sdk
  • 通过接口获取配置信息,配置微信sdk
  • 在wx.ready回调中调用方法

必须严格按顺序完成以上的三个步骤,否则是无法调用微信sdk的功能的。

总之,通过这篇文章,可以解决 h5 定位 99% 以上的应用场景。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。