Skip to content

Instantly share code, notes, and snippets.

@matthieu-D
Created July 15, 2017 19:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matthieu-D/ab4a0023c7e5d4a47cd7c5fd098eea5c to your computer and use it in GitHub Desktop.
Save matthieu-D/ab4a0023c7e5d4a47cd7c5fd098eea5c to your computer and use it in GitHub Desktop.
import { Geolocation } from '@ionic-native/geolocation';
.
.
.
export class HomePage {
.
.
.
constructor(
public backgroundMode: BackgroundMode,
public platform: Platform,
public geolocation: Geolocation,
public localNotifications: LocalNotifications) {
platform.ready().then(() => {
geolocation.getCurrentPosition()
.then(position => {
this.originalCoords= position.coords;
})
.catch((error) => {
console.log('error', error);
})
.
.
.
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment