mohsen-angular-leaflet-directive
Version:
angular-leaflet-directive - An AngularJS directive to easily interact with Leaflet maps
22 lines • 799 B
JavaScript
app.controller("PathsAjaxLoadController", [ "$scope", "$http", function($scope, $http) {
angular.extend($scope, {
london: {
lat: 51.505,
lng: -0.09,
zoom: 4
},
europeanPaths: {}
});
$scope.loadPaths = function loadPaths() {
$http.get('json/paths.json').success(function(data) {
$scope.europeanPaths = data;
});
};
$scope.changePaths = function changePaths() {
console.log($scope.europeanPaths);
$scope.europeanPaths.p1.latlngs[0] = {
lat: 53,
lng: -0.1
};
};
}]);