ホームページ  >  記事  >  ウェブフロントエンド  >  Google マップを使用して AngularJS_AngularJS で現在地を表示する方法

Google マップを使用して AngularJS_AngularJS で現在地を表示する方法

WBOY
WBOYオリジナル
2016-05-16 15:18:261762ブラウズ

-- HTML5 では、navigator.geolocation.getCurrentPosition(f1, f2) 関数を提供します。f1 は測位が成功したときに呼び出される関数、f2 は測位が失敗したときに呼び出される関数であり、現在の地理的位置情報が使用されます。実際のパラメータは f1 関数と f2 関数に渡されます。 f1 関数は Google Maps API を呼び出すだけです。

どうやって表示するのですか?

-- 即時情報と地図を表示するエリアが必要です。

ページでは、次のようになります:

<map-geo-location height="400" width="600"></map-geo-location>
<script src="angular.js"></script>
<script src="http://maps.google.com/maps/api/js&#63;sensor=false"></script>
<script src=="mapGeoLocation.js"></script>

ディレクティブ部分は次のとおりです:

(function(){
var mapGeoLocation = ['$window', function($window){
var template = '<p><span id="status">正在查找地址...</span></p>' + '<br /><div id="map"></div>',
mapContainer = null,
status = null;
function link(scope, elem, attrs){
//以Angular的方式获取Angular元素
status = angular.element(document.getElementById('status'));
mapContainer = angular.element(document.getElementById('map'));
mapContainer.attr('style', 'height:' + scope.height + 'px;width:' + scope.width + 'px');
$window.navigator.geolocation.getCurrentPosition(mapLocation, geoError);
}
//定位成功时调用
function mapLocation(pos){
status.html('found your location! Longitude: ' + pos.coords.longitude + ' Latitude: ' + pos.coords.latitude);
var latlng = new google.maps.LatLng(pos.coords.latitude, pos.coords.longitude);
var optons = {
zoom:15,
center: latlng,
myTypeCOntrol: true,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(mapContainer[0], options);
var marker = new google.maps.Markser({
position: latlng,
map: map, 
title: "Your location"
});
}
//定位失败时调用
function geoError(error){
status.html('failed lookup ' + error.message);
}
return {
restrict: 'EA', //默认
scope:{
height: '@',
width:'@'
},
link: link,
template: template
}
}];
angular.module('direcitveModule',[])
.direcitve('mapGeoLocation', mapGeoLocation);
}());

以上は、AngularJS で Google マップを使用して現在地を表示する方法について編集者が紹介した関連知識です。皆様のお役に立てれば幸いです。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。