H5結合百度map實現GPS定位的執行個體教程

來源:互聯網
上載者:User

前言

目前我們做m端時都會用到定位,當使用者第一次開啟h5頁面時會啟動gps定位,並結合百度map來尋找城市。按照我們的邏輯思路就是gps定位擷取經緯度,傳到後台調用百度的一個介面尋找城市名稱。

1、查詢得到城市名稱,我們根據城市名稱在我們自己的資料庫裡再查詢對應的城市id(查詢會很頻繁,可以基於xml 緩衝查詢,也可以放到redis裡)

2、為了保險起見,我們也會在自己的庫雷根據經緯度維護一套城市資訊,防止介面不可用時不影響定位。

H5 GPS定位

 1  (function () { 2         var 3             isGeolocation = false, 4             lat = 0, 5             lng = 0, 6             coords = null; 7              8         if (navigator.geolocation) { isGeolocation = true; }; 9         if (isGeolocation) {10             function getPosSuccess(position) {11                 coords = position.coords;12                 lat = coords.latitude, lng = coords.longitude;13                 $.ajax({14                     type: 'GET',15                     dataType: 'json',16                     url: '/Home/GetPositionArea',17                     data: { 'lat': lat, 'lng': lng },18                     success: function (data) {19 20                     }21                 });22             };23             function getPosError(err) {24                 switch (err) {25                     case err.PERMISSION_DENIED:26                         console.log("您拒絕了共用位置,可手動選擇城市。");27                         break;28                     case err.POSITION_UNAVAILABLE:29                         console.log("無法擷取當前位置");30                         break;31                     case err.TIMEOUT:32                         console.log("擷取位置逾時");33                         break;34                     default:35                         console.log("未知錯誤");36                         break;37                 }38                 39             };40             navigator.geolocation.getCurrentPosition(getPosSuccess, getPosError, null);41         } else {42             43         };44 45     })();

結合百度介面查詢具體城市

 JsonResult GetPositionArea( lng,  api = result =
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.