javascript - Angular-google-maps 在 $http 之后调用

标签 javascript angularjs google-maps

我需要显示带有 angular-google-maps plugin 的 map 在 $http 调用之后使用来自数据库的坐标(带有 promise )。

这是我的模板中的指令:

<google-map center="map.center" draggable="true" refresh="true" control="map.control" data-tap-disabled="true" zoom="map.zoom">
    <marker coords="marker.coords" options="marker.options" idkey="marker.id" ></marker>
  </google-map>

这是处理 map 显示的 Controller

.controller('FriendDetailCtrl', function($scope, $rootScope, $http, $state, $stateParams, $ionicLoading, $ionicPopup, Friends) {
$ionicLoading.show({
    template: '<i class="icon ion-loading-a"></i><br>Lade Details...',
    noBackdrop: true
});


// Detail Informationen holen
$scope.detail = {};
Friends.getDetail($stateParams.friendId).then(function(b) {
    $scope.detail = b;

    // Karte
    $scope.map = {
        center: {
            latitude: 30,
            longitude: -40
        },
        zoom: 12
    };


    // Marker
    $scope.marker = {
        id: 0,
        coords: {
            latitude: $scope.detail.lat,
            longitude: $scope.detail.long
        },
        options: {
            draggable: false
        }
    }


    $ionicLoading.hide();
});

返回数据的服务:

getDetail: function(friendId) {
            // $http returns a promise, which has a then function, which also returns a promise
            promise2 = $http({
                url: "http://dev.tellthedj.de/db/getGutschein.php",
                method: "POST",
                data: {"gutscheinId":friendId}
            }).then(function(response2) {
                // The then function here is an opportunity to modify the response
                // The return value gets picked up by the then in the controller.
                return response2.data;
            });
            // Return the promise to the controller
            return promise2;
        }

promise 中的数据,如 id、name 等都完美显示。还有来自数据库的坐标。我插入只是为了测试坐标的整数。如果我在 Friends.getDetail() 之前放置 $scope.map 调用,则 map 将起作用。但这个电话正在返回一个 promise 。你能帮忙吗?谢谢

最佳答案

对于这种情况,请调用 uiGmapGoogleMapApi 作为 .then 函数之一
你的$http promise 返回之后。

这是一个使用浏览器 navigator.geolocation 获取用户当前位置的示例 - 它可能需要长达几秒钟的时间(如果需要用户授权则需要更多时间),因此它通常比$http 调用。

我已将 getCurrentLocation() 服务包装在 $q promise 中,以便 Controller 在加载 map 之前等待当前位置返回。 (参见 fiddle 中的代码)

相同的方法适用于您的 $http 调用。

myApp.controller('MainCtrl', function($scope, uiGmapGoogleMapApi, myAppServices) {
    $scope.myCurrentLocation = {};

    myAppServices.getCurrentLocation()
    .then(function(myCurrentLocation){
        $scope.myCurrentLocation = myCurrentLocation;
    })
    .then(function(){return uiGmapGoogleMapApi})    // map load call is here
    .then(function(maps){
        $scope.map = {
            center: {        // set on San Francisco as initial default
                latitude: 37.7749295, 
                longitude: -122.4194155 
            },
            zoom: 13,
            pan: 1,
            options: myAppServices.getMapOptions().mapOptions,
        };
        $scope.map.center = $scope.myCurrentLocation
    })
});

您可以在 jsfiddle 中查看其余代码。

JSFIDDLE

注释:
- 我已经在它自己的“ promise ”中定义了 $scope.myCurrentLocation = myCurrentLocation; (为了清楚起见),即使它并不是真正的 promise - 但您同样可以将任何同步任务放入其中与 uiGmapGoogleMapApi 相同的 Promise 函数(如下所示) - 只需确保将它们放在前面,并且返回 uiGmapGoogleMapApi 或您将无法访问 promise 返回的 maps 对象:

myAppServices.getCurrentLocation()
.then(function(myCurrentLocation){
    $scope.myCurrentLocation = myCurrentLocation;
    return uiGmapGoogleMapApi})            // this is where the map load call is made
.then(function(maps){...

- 我将 $scope.map.options 放入服务中也是为了保持 Controller 整洁且可读
- 如果你想在 Controller 中定义map.options,你必须在最后一个.then promise 中执行此操作(即在 map 加载之后),否则你将对于像 mapTypeId : google.maps.MapTypeId.ROADMAP 这样的定义,会出现 'google' is undefined 类型错误,因为任何定义都将是 hoisted ,并且在 map 加载之前 Controller 不知道 google 是什么

关于javascript - Angular-google-maps 在 $http 之后调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25176723/

相关文章:

android - 如何使用谷歌地图 v2 和 gps 在 android 中绘制实时路线

javascript - 选择后使选择框不被选中

javascript - 在 Canvas 上生成线条无法按预期工作

javascript - 使用特定类 jquery 将类添加到下一个 div

javascript - 我如何 $save 一个新对象?

javascript - 在被破坏的元素上使用 mutationObserver 的最佳方法

ios - 从 Firestore Swift 在谷歌地图上显示多个位置

javascript - 为除 js 文件之外的所有文件禁用 eslint?

javascript - 如何在 AngularJs 中打印 swal Alert 框中的数组?

javascript - 在使其可见之前告知 Google map 圆圈对象何时移动