AngularJSでGoogleマップを使って現在位置を表示する方法
2192 ワード
--html 5ではnavigatorが提供されています.geolocation.getCurrentPosition(f 1,f 2)関数、f 1は位置決め成功呼び出しの関数、f 2は位置決め失敗呼び出しの関数であり、現在の地理的位置情報を実パラメータとしてf 1およびf 2関数に渡す.f 1関数はGoogleマップのAPIを呼び出せばよい.
どのように展示しますか?
--地図を表示するためのヒントが必要です.
ページには、大体次のように表示されます.
Directiveセクションは のとおりです.
、AngularJSでGoogleマップを って を する についてご しましたが、 さんの に つことを っています.
どのように展示しますか?
--地図を表示するためのヒントが必要です.
ページには、大体次のように表示されます.
Directiveセクションは のとおりです.
(function(){
var mapGeoLocation = ['$window', function($window){
var template = ' ...
' + '
',
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マップを って を する についてご しましたが、 さんの に つことを っています.