UNPKG

core-resource-app-test

Version:

App that contains assets and scripts for the core apps

19 lines 698 B
app.controller('MarkersEventsAddController', [ '$scope', function($scope) { angular.extend($scope, { london: { lat: 51.505, lng: -0.09, zoom: 8 }, events: {} }); $scope.markers = new Array(); $scope.$on("leafletDirectiveMap.click", function(event, args){ var leafEvent = args.leafletEvent; $scope.markers.push({ lat: leafEvent.latlng.lat, lng: leafEvent.latlng.lng, message: "My Added Marker" }); }); } ]);