H5 怎样唤起百度舆图 App

近来接办了一个需求,请求混合式开辟,前端做好 h5 后将页面嵌入到 ios 和 android 中,须要用到百度舆图的舆图导航。详细功用点以下:

  1. 假如手机端(ios, android)安装了百度舆图,点击导航按钮,唤起百度舆图 app
  2. 不然,翻开 web 端百度舆图导航

须要用到的百度舆图的 api 文档链接以下:
http://lbsyun.baidu.com/index…

最最先的代码:

  // 尝试唤起百度舆图 app
  window.location.href = scheme;
  var timeout = 600;
  var startTime = Date.now();
  var t = setTimeout(function () {
    var endTime = Date.now();
    // 当胜利唤起百度舆图 app 后,再返回到 h5 页面,这时候 endTime - startTime 肯定大于 timeout + 200; 假如唤起失利, 翻开 web 端百度舆图导航
    if (!startTime || (endTime - startTime) < (timeout + 200)) {
       window.location.href = 'http://api.map.baidu.com/direction' + queryStr + '&output=html';
    }
  }, timeout);

题目:
上面这段代码在 android 机械上运转是没有题目的,但是在 ios 上却一直实行了 setTimeout 这个计时器,所以假如在 ios 端,纵然 app 处于背景,它的 h5 代码照样会实行

所以须要换一种体式格局,总的思绪是:

  1. 采纳轮询的体式格局
  2. 在 600 ms 内尝试唤起百度舆图 app, 唤起失利后, 推断 h5 是处于前台照样背景,假如是前台,则翻开 web 端百度舆图 app。不论唤起胜利照样失利,过 200 ms 后都消灭定时器。

修改后的代码:

  var startTime = Date.now();
  var count = 0;
  var endTime = 0;
  var t = setInterval(function () {
    count += 1;
    endTime = Date.now() - startTime;
    if (endTime > 800) {
      clearInterval(t);
    }
    if (count < 30) return;
    if (!(document.hidden || document.webkitHidden)) {
      window.location.href = 'http://api.map.baidu.com/direction' + queryStr + '&output=html';
    }
  }, 20);

完全的代码:

  function wakeBaidu() {
    var geolocation = new BMap.Geolocation();
    geolocation.getCurrentPosition(function (result) {
      if (this.getStatus() == BMAP_STATUS_SUCCESS) {
        var latCurrent = result.point.lat; //猎取到的纬度
        var lngCurrent = result.point.lng; //猎取到的经度
        if (latCurrent && lngCurrent) {
          var scheme = '';
          
          // urlObject 是我这边地址栏查询参数对象
          var queryStr = '?origin=name:我的位置|latlng:' + latCurrent + ',' + lngCurrent + '&destination=' + urlObject.lat + ',' + urlObject.lng + '&region=' + urlObject.city + '&coord_type=bd09ll&mode=driving';

          if (isIOS()) {
            // ios 端
            scheme = 'baidumap://map/direction' + queryStr;
          } else {
            // android 端
            scheme = 'bdapp://map/direction' + queryStr;
          }

          // 重要完成代码
          window.location.href = scheme;
          
          var startTime = Date.now();
          var count = 0;
          var endTime = 0;
          
          var t = setInterval(function () {
            count += 1;
            endTime = Date.now() - startTime;
            if (endTime > 800) {
              clearInterval(t);
            }
            if (count < 30) return;
            if (!(document.hidden || document.webkitHidden)) {
              window.location.href = 'http://api.map.baidu.com/direction' + queryStr + '&output=html';
            }
          }, 20);

          window.onblur = function () {
            clearInterval(t);
          };
        } else {
          alert('猎取不到定位,请搜检手机定位设置');
        }
      }
    });
  }
    原文作者:千寻
    原文地址: https://segmentfault.com/a/1190000018018944
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞