mohsen-angular-leaflet-directive
Version:
angular-leaflet-directive - An AngularJS directive to easily interact with Leaflet maps
20 lines • 645 B
JavaScript
app.controller('BasicMapWithoutAnimationsController', [ '$scope', function($scope) {
angular.extend($scope, {
london: {
lat: 51.505,
lng: -0.09,
zoom: 8
},
defaults: {
zoomAnimation: false,
markerZoomAnimation: false,
fadeAnimation: false
},
markers: {
london: {
lat: 51.505,
lng: -0.09,
}
}
});
} ]);