diff --git a/src/app/services/physics.service.ts b/src/app/services/physics.service.ts index 975c7ea..b32a640 100644 --- a/src/app/services/physics.service.ts +++ b/src/app/services/physics.service.ts @@ -25,10 +25,6 @@ export class PhysicsService { console.log('Orientation:', orientation); this.orientation.next(orientation); }); - window.addEventListener('devicemotion', motion => { - console.log('Motion:', motion); - this.motion.next(motion); - }); navigator.geolocation.watchPosition(position => { console.log('GPS:', position); this.position.next(position);