Compare commits

..

No commits in common. "506b15cd4fd96aae08d23dced672e3afb1ef2aed" and "51bb5b38332f749c0a46a2f66be065e7dfa66712" have entirely different histories.

2 changed files with 29 additions and 26 deletions

View File

@ -59,11 +59,9 @@ export class GpsLocation implements OnInit,OnChanges{
ngOnChanges(changes: SimpleChanges) { ngOnChanges(changes: SimpleChanges) {
if (changes.position && this.instance) { if (changes.position && this.instance) {
var p = changes.position.currentValue as Position; var p = changes.position.currentValue as Position;
if(p) { this.instance.setPosition(fromLonLat([p.coords.longitude, p.coords.latitude]));
this.instance.setPosition(fromLonLat([p.coords.longitude, p.coords.latitude])); this.locationTolerance = p.coords.accuracy;
this.locationTolerance = p.coords.accuracy; this.recalcLocationTolerance();
this.recalcLocationTolerance();
}
} }
if(changes.heading && this.instance) { if(changes.heading && this.instance) {
this.rotate = "rotate(" + Math.round(changes.heading.currentValue) + " 500 500)"; this.rotate = "rotate(" + Math.round(changes.heading.currentValue) + " 500 500)";

View File

@ -1,5 +1,5 @@
import { Injectable } from '@angular/core'; import { Injectable } from '@angular/core';
import { Observer, Observable,BehaviorSubject } from 'rxjs'; import { Observer, Observable } from 'rxjs';
/** /**
* GeolocationService class. * GeolocationService class.
@ -9,26 +9,31 @@ import { Observer, Observable,BehaviorSubject } from 'rxjs';
@Injectable() @Injectable()
export class GeolocationService { export class GeolocationService {
private positionObserver$:BehaviorSubject<Position> = new BehaviorSubject<Position>(null); /**
* Tries HTML5 geolocation.
constructor() { *
navigator.geolocation.watchPosition( * Wraps the Geolocation API into an observable.
(position: Position) => { *
this.positionObserver$.next(position); * @return An observable of Position
}, */
(error: PositionError) => {
console.debug('Geolocation service: ' + error.message);
},
{
enableHighAccuracy: true,
timeout: 5000,
maximumAge: 0
}
);
}
getCurrentPosition(): Observable<Position> { getCurrentPosition(): Observable<Position> {
return this.positionObserver$; return Observable.create((observer: Observer<Position>) => {
// Invokes getCurrentPosition method of Geolocation API.
navigator.geolocation.watchPosition(
(position: Position) => {
observer.next(position);
},
(error: PositionError) => {
console.debug('Geolocation service: ' + error.message);
//observer.error(error);
},
{
enableHighAccuracy: true,
timeout: 5000,
maximumAge: 0
}
);
});
} }
} }