MUI+VUE開發基於H5移動APP的定位問題
阿新 • • 發佈:2019-01-08
引入高德地圖提供的JavaScriptAPI
- <script src="http://webapi.amap.com/mapsv=1.4.4&key=註冊高德地圖你申請的JavaScriptApiKey"></script>
定位函式
- //獲取位置
- function getAddress() {
- //高德地圖API
- //AMap.service解決只使用高德Geolocation功能提示Geolocation不是建構函式問題
- AMap.service(["AMap.Geolocation"],function(){
- var geolocation = new AMap.Geolocation();
- geolocation.getCurrentPosition(function(status,result) {
- if(status=="complete"){
- attendanceVue.currentAddress.ADDRESS=result.formattedAddress; //設定當前地址
- attendanceVue.currentCityCode
- //設定當前經緯度
- attendanceVue.currentLngLat.push(result.position.lng);
- attendanceVue.currentLngLat.push(result.position.lat);
- }else{
- attendanceVue.currentAddress.ADDRESS
- }
- });
- });
- }
geolocation的getCurrentPosition函式預設配置基本上就能滿足我的需求,配置詳情可參考高德地圖定位文件。使用該方法打包後的定位基本上與html5 自帶的定位外掛定位沒有差距且在Android4.0與ios10.0版本及以上版本均做過測試且測試無問題。但難免定位會有一定差距,高德地圖還額外提供了根據當前位置獲取附近位置的Api(web服務Api),本文使用的Web服務Api ,JavaScriptApi 也提供了獲取附近位置介面但考慮到獲取附近位置頁面將做為公共頁面且引用網路路徑的JavaScript佔頻寬最終選擇了web服務Api。
- /**
- * 獲取附近位置
- * 使用高德地圖web搜尋服務介面,Api文件地址:http://lbs.amap.com/api/webservice/guide/api/search
- * @param {Object} keywords 搜尋關鍵字
- * @param {Object} currentCityCode 當前城市編碼
- * @param {Object} currentLngLat 當前經緯度
- * @param {Object} pageIndex 頁碼
- * @param {Object} pageSize 記錄條數(強烈建議不超過25,若超過25可能造成訪問報錯)
- * @param {Object} radius 根據當前經緯度查詢範圍單位米
- */
- function searchAddress(keywords,currentCityCode,currentLngLat,pageIndex,pageSize,radius) {
- ca.get({
- url: 'http://restapi.amap.com/v3/place/around?key=申請高德地圖Web服務API的Key',
- data: {
- 'keywords':keywords,
- 'city': currentCityCode,
- 'types': '公司企業|道路附屬設施|公共設施|商務住宅|餐飲服務|購物服務|生活服務|交通設施服務|',
- 'location': currentLngLat,
- 'offset': pageSize,
- 'page': pageIndex,
- 'radius': radius
- },
- succFn: function(result) {
- var data = evalObj(result);
- if(data.status == 1 && data.info === 'OK') {
- //如果查詢關鍵字為空則重置查詢結果,關鍵字不為空的查詢結果需迭代追加否則會造成資料結構混亂Vue繫結不到Dom上
- if(isEmpty(keywords)){
- mui.each(data.pois,function(index,element){
- addressVue.ADDRESS_LIST.push(element);
- });
- }else{
- addressVue.ADDRESS_LIST=data.pois;
- }
- }
- }
- });
- }
暫時就寫到這裡吧,到時候抽空把相關程式碼單獨抽出來在更新吧。