This module allow you to use geolocation, easy to implement.
npm install ionicgeolocationmoduleThis module allow you to use geolocation, easy to implement.
imports : [ GeolocationModule ]
constructor(private gs: GeolocationService) {}
this.gs.locationRequest().then((location) => {
alert(location.coords.longitude);
alert(location.coords.latitude);
}).catch((error) => {
alert(JSON.stringify(error));
});