Posts by parazito • 11 points
2 posts
-
0
votes2
answers115
viewsA: How to delete data from google maps
Every marker has a map set to it. To remove the marker from the map, you need to set the map as null. Thus: $rootScope.myLocation.setMap(null); See a detailed example on:…
-
1
votes2
answers80
viewsA: How do I put email in the login form?
I try something like this on your loginCtrl: .controller('loginCtrl', function($scope, $window) { $scope.usuario = { email: $window.localStorage['emailSalvo'] }; }…