Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. setGeofences() {
  2. this.geofence.addOrUpdate(this.geofences).then(function () {
  3. console.log('Geofence successfully added');
  4. }, function (error) {
  5. console.log('Adding geofence failed', error);
  6. });
  7.  
  8. this.geofence.onTransitionReceived().subscribe(resp => {
  9. console.log(resp);
  10. }}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement