Я пытаюсь использовать нативную геолокацию от Ionic, но когда она не может найти местоположение, не запускает метод catch, он ничего не делает.Это мой код:
let options: {timeout:10000, enableHighAccurary:true}
this.geolocation.getCurrentPosition(options)
.then ((resp) =>{
this.latitud = resp.coords.latitude;
this.longitud = resp.coords.longitude;
console.log(this.latitud+"-------"+this.longitud);
})
.catch((error) =>{
console.log("Error getting location: "+error)
})