我对工厂的调用在我的地图控制器中返回得太快了。我正在尝试设置地图的中心,但是由于对 geo 的调用返回 undefined 它永远不会设置中心。然而,坐标是在地理工厂中获取的。他们只是太晚了。
我认为 .then() 的目的是等待返回日期。那么,如何强制我的应用等待?
我的工厂是:
angular.module('comhubApp')
.factory('geo', function ($q) {
var getPosition = function () {
var deferred = $q.defer();
if (navigator.geolocation) {
deferred.resolve(navigator.geolocation.getCurrentPosition(function (position) {
var crd = position.coords;
console.log('Latitude : ' + crd.latitude);
console.log('Longitude: ' + crd.longitude);
return crd;
} ));
}
return deferred.promise;
}
// Public API here
return {
getPosition: getPosition
};});
我的地图控制器调用它:
// GEOLOCATION
geo.getPosition().then( function (position) {
console.log(position);
$scope.center.lat = position.latitude;
$scope.center.lon = position.longitude;
});