最近接手了一個需求,要求混合式開發,前端做好h5 後將頁面嵌入到ios 和android 中,需要用到百度地圖的地圖導航。具體功能點如下:
如果手機端(ios, android)安裝了百度地圖,點擊導航按鈕,喚起百度地圖app
否則,打開web 端百度地圖導航
需要用到的百度地圖的api 文件連結如下:http://lbsyun.baidu.com/index.php?title=uri/api/ios
最開始的程式碼:
// 試著喚起百度地圖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 程式碼還是會執行。
所以需要換個方式,總的思路是:
修改後的程式碼:
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 latCurpointrent = resultus() == BMAP_STATUS_SUCCESS) { var latCurpointrent = result.緯度var lngCurrent = result.point.lng; //取得到的經度if (latCurrent && lngCurrent) { var scheme = ''; // urlObject 是我這邊位址列查詢參數物件var queryStr = '?origin=name:我的位置|latlng:' + latCurrent + ',' + lngCurrent + '&destination=' + urlObject.lat + ',' + urlObject.lng + '®ion=' + 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('取得不到定位,請檢查手機定位設定'); } } }); }
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持VeVb武林網。