This is not quite simple, but here is my approach for the asymptotic formula. It's too long as a comment so I've posted it as an answer, but it is not complete. Perhaps someone can shed light on how to finish this.
$$\frac{2^{n} {N\choose\lfloor\frac{N}{2}\rfloor}}{{2N\choose N}}=2^n\frac{N!}{\lfloor\frac{N}{2}\rfloor!\left(N-\lfloor\frac{N}{2}\rfloor\right)!}\cdot\frac{N!N!}{\left(2N\right)!}$$
$$=2^N\cdot\frac{\left(N\cdot N-1\cdots \lfloor\frac{N}{2}\rfloor+1\right)\left(N\cdot N-1\cdots \lceil\frac{N}{2}\rceil+1\right)}{(2N)\cdot (2N-1)\cdots (N+1)}$$
we can split off this product, but we have to do so a bit differently for $N$ even and $N$ odd. Suppose first $N$ is even, then this expression becomes
$$=2^N\cdot\frac{(N)\cdot (N-1)\cdots(\frac{N}{2}+1)}{(2N)\cdot (2N-2)\cdots (N+2)}\cdot\frac{(N)\cdot (N-1)\cdots(\frac{N}{2}+1)}{(2N-1)\cdot (2N-3) \cdots (N+1)}$$
$$=2^N\cdot\frac{1}{2^{\frac{N}{2}}}\cdot\frac{1}{2^{\frac{N}{2}}}\prod^{N}_{k=\frac{N}{2}+1}\left(1 - \frac{1}{2k}\right)^{-1}$$
$$=\prod^{N}_{k=\frac{N}{2}+1}\left(1 - \frac{1}{2k}\right)^{-1}$$
analogously for odd $N$, we end up with
$$=\prod_{k=\frac{N+1}{2}+1}^{N}\left(1 - \frac{1}{2k}\right)^{-1}$$
In particular, if anyone can find a closed form solution for
$$P=\prod_{k=1}^{n}\left(1 - \frac{1}{2k}\right)$$
then we can prove the asymptotic bound. I am not sure if such an expression exists or not, but I am unsure of how to proceed as of now.