You can use `.amb()` instead of `.conbineLatest()`...
# rx
e
You can use
.amb()
instead of
.conbineLatest()
if you just want either
mapReady
or
panoramaReady
to emit. If you want to want for both,
.zip()
is a better option.