如何在带有角度传单的地图上调用fitbounds?我看了一篇帖子,以寻找地图绑定事件,但无法找到任何示例代码。
答案 0 :(得分:0)
尝试使用
angular.module('myModule').controller('MapController', ['$scope', 'leafletData',
function($scope, leafletData) {
leafletData.getMap().then(function(map) {
map.fitBounds(bounds);
});
}
]);