Update README.md

This commit is contained in:
Ibby Hadeed 2017-09-11 09:56:07 -04:00 committed by GitHub
parent 76effe98f8
commit 29604d6d3d

View File

@ -52,34 +52,24 @@ import { NgZone } from '@angular/core';
@Component({ ... }) @Component({ ... })
export class MyComponent { export class MyComponent {
constructor(private geolocation: Geolocation, private platform: Platform, private ngZone: NgZone) { constructor(private geolocation: Geolocation, private platform: Platform) {
platform.ready().then(() => { platform.ready().then(() => {
// get position // get position
geolocation.getCurrentPosition().then(pos => { geolocation.getCurrentPosition().then(pos => {
console.log(`lat: ${pos.coords.latitude}, lon: ${pos.coords.longitude}`) console.log(`lat: ${pos.coords.latitude}, lon: ${pos.coords.longitude}`)
}); });
// watch position // watch position
const watch = geolocation.watchPosition().subscribe(pos => { const watch = geolocation.watchPosition().subscribe(pos => {
console.log(`lat: ${pos.coords.latitude}, lon: ${pos.coords.longitude}`) console.log(`lat: ${pos.coords.latitude}, lon: ${pos.coords.longitude}`)
// Currently, observables from Ionic Native plugins
// need to run inside of zone to trigger change detection
ngZone.run(() => {
this.position = pos; this.position = pos;
})
}); });
// to stop watching // to stop watching
watch.unsubscribe(); watch.unsubscribe();
}); });
} }