如何在传单角度上调用fitBounds

时间:2015-05-01 18:48:10

标签: leaflet angular-leaflet-directive

如何在带有角度传单的地图上调用fitbounds?我看了一篇帖子,以寻找地图绑定事件,但无法找到任何示例代码。

1 个答案:

答案 0 :(得分:0)

尝试使用

angular.module('myModule').controller('MapController', ['$scope', 'leafletData',
    function($scope, leafletData) {
            leafletData.getMap().then(function(map) {
                map.fitBounds(bounds);
            });
    }
]);

并退房 Dynamically changing Leaflet map bounds in Angular?