mohsen-angular-leaflet-directive
Version:
angular-leaflet-directive - An AngularJS directive to easily interact with Leaflet maps
8 lines • 386 B
JavaScript
app.config(function ($routeProvider) {
$routeProvider.when('/map', {
template: '<leaflet width="100%" height="480px"></leaflet>',
controller: 'BasicDynamicAddRemoveMapExample'
});
});
app.controller('BasicDynamicAddRemoveMapExample', [ '$scope', 'leafletData', function($scope, leafletData) {
} ]);