AngularJSでGoogleマップを使って現在位置を表示

3701 ワード


Googleマップを使って現在位置を表示する方法--html 5ではnavigatorが提供されています.geolocation.getCurrentPosition(f 1,f 2)関数、f 1は位置決め成功呼び出しの関数、f 2は位置決め失敗呼び出しの関数であり、現在の地理的位置情報を実パラメータとしてf 1およびf 2関数に渡す.f 1関数はGoogleマップのAPIを呼び出せばよい.
どのように展示されているのでしょうか--ヒント情報と地図を示すエリアが必要です.
ページには、大体次のように表示されます.

Directiveセクションは次のとおりです.
 
(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);
}());