中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

AngularJs如何利用百度地圖API定位當前位置獲取地址信息

這篇文章主要介紹AngularJs如何利用百度地圖API 定位當前位置獲取地址信息,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

創(chuàng)新互聯(lián)建站專注于威寧網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供威寧營銷型網(wǎng)站建設(shè),威寧網(wǎng)站制作、威寧網(wǎng)頁設(shè)計、威寧網(wǎng)站官網(wǎng)定制、小程序制作服務(wù),打造威寧網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供威寧網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。

第一、申請百度密鑰  很簡單的幾步就搞定

第二、引入文件

<!-- 百度地圖定位 -->
<script src="http://api.map.baidu.com/components?ak=WUfZTjKPuZ2G5RmgD0Psejv6XOmIEQVQ"></script> 
<script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=WUfZTjKPuZ2G5RmgD0Psejv6XOmIEQVQ"></script>

第三、綁定數(shù)據(jù)到你要顯示的輸入框內(nèi)

完整地址:<input type="text" ng-model="all"/><br>
所處城市:<input type="text" ng-model="shi"/><br>
所處區(qū)域:<input type="text" ng-model="qu"/><br>
所處街道:<input type="text" ng-model="jiedao"/>

第四、控制器中代碼

angular.module('myApp')
.controller('myCtrl',function($scope) {
 //獲取地理位置信息 
   $scope.getAddr = function() { 
    var geolocation = new BMap.Geolocation(); 
    geolocation.getCurrentPosition( 
     //獲取位置信息成功 
     function(position){ 
      if(this.getStatus() == BMAP_STATUS_SUCCESS){ 
       $scope.longitude = position.point.lng; 
       $scope.latitude = position.point.lat; 
       // 根據(jù)坐標得到地址描述  
       $scope.getGeo(); 
      }  
     },{ 
      // 指示瀏覽器獲取高精度的位置,默認為false 
      enableHighAccuracy: true, 
      // 指定獲取地理位置的超時時間,默認不限時,單位為毫秒 
      // timeout: 5000, 
      // 最長有效期(30S),在重復獲取地理位置時,此參數(shù)指定多久再次獲取位置 
      maximumAge: 30*1000 
     }); 
   }; 
  $scope.getGeo = function() {
  var myGeo = new BMap.Geocoder();
  // 根據(jù)坐標得到地址描述
  myGeo.getLocation(new BMap.Point($scope.longitude,$scope.latitude),
  function(result) {
   if (result) {
   $scope.geoaddress = {
   'fulladdress' : result.addressComponents.city+ result.addressComponents.district+ result.addressComponents.street,
   'city' : result.addressComponents.city,
   'area' : result.addressComponents.district,
   'street' : result.addressComponents.street,
   };
   $scope.all = result.addressComponents.city+ result.addressComponents.district+ result.addressComponents.street;
   $scope.shi = result.addressComponents.city;
   $scope.qu = result.addressComponents.district;
   $scope.jiedao = result.addressComponents.street;
   alert(JSON.stringify($scope.all))
   } else {
   $scope.showAlert("定位失敗,地址解析失敗");
   }
  });
  };
  } ]);

第五、完整代碼如下:(大體思路就是這樣!這里做個標記留給以后的自己)

<!DOCTYPE html>
<html>
<meta charset="utf-8">
<script src="http://cdn.static.runoob.com/libs/angular.js/1.4.6/angular.min.js"></script>
<script src="http://api.map.baidu.com/components?ak=WUfZTjKPuZ2G5RmgD0Psejv6XOmIEQVQ"></script> 
<script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=WUfZTjKPuZ2G5RmgD0Psejv6XOmIEQVQ"></script> 
<body>
<div ng-app="myApp" ng-controller="myCtrl">
<button type="button" ng-click='getAddr()'>點擊定位</button><br>
完整地址:<input type="text" ng-model="all"/><br>
所處城市:<input type="text" ng-model="shi"/><br>
所處區(qū)域:<input type="text" ng-model="qu"/><br>
所處街道:<input type="text" ng-model="jiedao"/>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
  //獲取地理位置信息 
 $scope.getAddr = function() { 
 var geolocation = new BMap.Geolocation(); 
 geolocation.getCurrentPosition( 
 //獲取位置信息成功 
 function(position){ 
 if(this.getStatus() == BMAP_STATUS_SUCCESS){ 
  $scope.longitude = position.point.lng; 
  $scope.latitude = position.point.lat; 
  // 根據(jù)坐標得到地址描述  
  $scope.getGeo(); 
  }  
  },{ 
  // 指示瀏覽器獲取高精度的位置,默認為false 
  enableHighAccuracy: true, 
  // 指定獲取地理位置的超時時間,默認不限時,單位為毫秒 
  // timeout: 5000, 
  // 最長有效期(30S),在重復獲取地理位置時,此參數(shù)指定多久再次獲取位置 
  maximumAge: 30*1000 
  }); 
  }; 
  $scope.getGeo = function() {
  var myGeo = new BMap.Geocoder();
  // 根據(jù)坐標得到地址描述
  myGeo.getLocation(new BMap.Point($scope.longitude,$scope.latitude),
  function(result) {
  if (result) {
   $scope.geoaddress = {
   'fulladdress' : result.addressComponents.city+ result.addressComponents.district+ result.addressComponents.street,
   'city' : result.addressComponents.city,
   'area' : result.addressComponents.district,
   'street' : result.addressComponents.street,
   };
   $scope.all = result.addressComponents.city+ result.addressComponents.district+ result.addressComponents.street;
   $scope.shi = result.addressComponents.city;
   $scope.qu = result.addressComponents.district;
   $scope.jiedao = result.addressComponents.street;
   alert(JSON.stringify($scope.all))
   } else {
   $scope.showAlert("定位失敗,地址解析失敗");
   }
  });
  };
});
</script>
</body>
</html>

以上是“AngularJs如何利用百度地圖API 定位當前位置獲取地址信息”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!

網(wǎng)頁題目:AngularJs如何利用百度地圖API定位當前位置獲取地址信息
網(wǎng)站鏈接:http://www.rwnh.cn/article14/pcohde.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站建設(shè)、服務(wù)器托管、Google、網(wǎng)站改版、虛擬主機、軟件開發(fā)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

網(wǎng)站優(yōu)化排名
娱乐| 南阳市| 江口县| 长乐市| 苍梧县| 太谷县| 本溪市| 三门县| 洛隆县| 司法| 柯坪县| 海丰县| 年辖:市辖区| 广河县| 东乌| 林甸县| 宣威市| 安达市| 来宾市| 通渭县| 开原市| 丹棱县| 抚州市| 威远县| 丰都县| 文水县| 遂宁市| 平阳县| 衡山县| 托克托县| 芜湖县| 富宁县| 商水县| 晋城| 石景山区| 天峻县| 云林县| 乐昌市| 巴东县| 宝应县| 定陶县|