this.geolocation.getCurrentPosition().then((resp) => {
this.latitude = resp.coords.latitude
this.longitude = resp.coords.longitude
console.log (resp)
this.loadCompanis(this.latitude);
}).catch((error) => {
console.log('Error getting location', error);
});