Since Beta 11 I have this issue:
let loading = this.loadingCtrl.create({content: 'Loading...'});
loading.present();
this.geolocationService.geolocate().subscribe(
(data) => {
loading.dismiss();
let alert = this.alertCtrl.create({
title: 'Title',
subTitle: 'Text',
buttons: ['OK']
});
alert.present();
},
...
);
loading.dismiss()
does not have any effect, the loading overlay stays open. loading.destroy()
removes it but I guess that is not the way to go.