mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-04-06 06:59:10 +08:00
Update README.md
This commit is contained in:
parent
76effe98f8
commit
29604d6d3d
12
README.md
12
README.md
@ -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();
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user