IONIC 4 - Show Route page from a modal

Hi all.

I have a modal window, from which I make a routing change.

 this.router.navigate(['/app/tabs/maps'], {
            state: {
                uid: this.uid,
                autocomplete: true
            }
        });

That route change is made, but behind the modal window. I want it to occur in front of the modal window.

Any ideas?

Thank you

Have you managed it?

How would this make any sense?

A modal interrupts the ordinary flow of user action, because it demands immediate attention before anything else can happen. To me, that implies that it must be on the “top” of the logical “stack” of windows. If anything is obscuring any of it, the metaphor crumbles and the modal can’t do its job properly.