angular.module('events.services', [])
.factory('EventService', function($http, $cordovaSQLite) {
return {
getUserCoords: function() {
if (navigator.geolocation) {
return navigator.geolocation.getCurrentPosition(function(position) {
return position;
})
}
}
}
})
EventService.getUserCoords();