mohsen-angular-leaflet-directive
Version:
angular-leaflet-directive - An AngularJS directive to easily interact with Leaflet maps
10 lines • 470 B
JavaScript
app.controller("BasicBoundsController", [ "$scope", "leafletData", "leafletBoundsHelpers", function($scope, leafletData, leafletBoundsHelpers) {
var bounds = leafletBoundsHelpers.createBoundsFromArray([
[ 51.508742458803326, -0.087890625 ],
[ 51.508742458803326, -0.087890625 ]
]);
angular.extend($scope, {
bounds: bounds,
center: {}
});
}]);