Я работаю с ионными / угловыми и наблюдаемыми RXJS.
Я пытаюсь реорганизовать свой код с помощью наблюдаемых Rxjs, и у меня есть следующий код:
ionViewWillEnter() {
if (this.platform.is('core') || this.platform.is('mobileweb')) {
this.lat = 37.3675506;
this.lng = -6.0452695;
this.printMap();
} else {
if (this.platform.is('android')) {
this.tryGeolocation();
} else if (this.platform.is('ios')) {
console.log("IOS")
}
}
}
Если пользовательский доступ с мобильного Android, я должен проверить: isLocationAuthorized, isLocationEnabled (), чтобы получить текущую позицию с помощью getCurrentPosition (), тогда я должен распечатать карту, где я использую Observables forkjoin.
Проблема в том, чтобы проверить методы, возвращающие обещания, и я не знаю, как связать этот поток.
tryGeolocation следующий:
async tryGeolocation() {
try {
if (await this.diagnostic.isLocationAuthorized()) {
if (await this.diagnostic.isLocationEnabled()) {
this.loading = this.loadingCtrl.create({
content: 'Localizando...',
dismissOnPageChange: true
});
this.loading.present();
const {coords} = await this.geolocation.getCurrentPosition();
this.lat = coords.latitude;
this.lng = coords.longitude;
this.loading.dismiss();
alert(this.lat);
alert(this.lng);
this.printMap();
} else {
console.log("error1")
}
} else {
console.log("error2")
}
} catch (e) {
console.log('Error getting location', e);
}
}
printMap() {
let obs1 = this._sp.getLocationsByPosition(this.lat, this.lng);
let obs2 = this._sp.getUserFavoriteLocations2();
this.subscription = forkJoin([obs1, obs2]).subscribe(results => {
this.allLocations = results[0];
this.myLocations = results[1];
this.allLocations = this.allLocations.filter(item => !this.myLocations.some(other => item.id.sid_location === other.id.sid_location && item.id.bid_environment === other.id.bid_environment));
this.map = new google.maps.Map(this.mapElement.nativeElement, {
zoom: 13,
center: {lat: parseFloat(this.lat), lng: parseFloat(this.lng)},
zoomControl: true,
draggable: true
});
new google.maps.Marker({
position: {lat: parseFloat(this.lat), lng: parseFloat(this.lng)},
map: this.map,
icon: {
url: "https://maps.gstatic.com/mapfiles/api-3/images/spotlight-poi2_hdpi.png"
}
});
this.printMarkers();
});
}
Я пытался преобразовать обещание в наблюдаемые, как это:
let obs1 = Observable.fromPromise(this.diagnostic.isLocationAuthorized());
let obs2 = Observable.fromPromise(this.diagnostic.isLocationEnabled());
let obs3 = Observable.fromPromise(this.geolocation.getCurrentPosition());
obs1.flatMap(() => obs2)
.flatMap(() => obs3)
.subscribe(coords => {
console.log(coords);
//CALL TO printMap?
})
Может ли кто-нибудь помочь мне добиться этого процесса рефакторинга моего кода?
Заранее спасибо