la matriz tikz no está distribuida uniformemente

la matriz tikz no está distribuida uniformemente

¿Cómo puedo hacer que la caja se distribuya uniformemente? código de la siguiente manera:

\documentclass[border=5pt]{standalone}
\usepackage{tikz}
\usetikzlibrary{matrix,positioning}
\begin{document}
\begin{tikzpicture}
\def\lw{1pt} %define linewidth here
\tikzset{box/.style={draw,rotate=90,inner sep=0pt,line width=\lw,
    minimum width=2.2cm,minimum height=2.2cm,text width=1.6cm}}
\matrix (M1) [matrix of nodes,draw,inner sep=2pt,
        row 1/.style={align=right},
        row 5/.style={align=left},
        row sep=-\lw,column sep=-\lw,
        nodes={box},nodes in empty cells]{
 & PORCH 1st &  & DOOR & \\
 &  &  &  & \\
 &  &  &  & \\
 &  &  &  & \\
 & BSMT & GARAGE & PORCH 2nd & \\};
\end{tikzpicture}
\end{document}

Ahora el resultado parece feo: ingrese la descripción de la imagen aquí

Respuesta1

Añade anchor=centera tu box/.style:

\documentclass[border=5pt]{standalone}
\usepackage{tikz}
\usetikzlibrary{matrix,positioning}
\begin{document}
\begin{tikzpicture}
\def\lw{1pt} %define linewidth here
\tikzset{box/.style={draw,rotate=90,inner sep=0pt,line width=\lw,
    minimum width=2.2cm,minimum height=2.2cm,text width=1.6cm,anchor=center}}
\matrix (M1) [matrix of nodes,draw,inner sep=2pt,
        row 1/.style={align=right},
        row 5/.style={align=left},
        row sep=-\lw,column sep=-\lw,
        nodes={box},nodes in empty cells]{
 & PORCH 1st &  & DOOR & \\
 &  &  &  & \\
 &  &  &  & \\
 &  &  &  & \\
 & BSMT & GARAGE & PORCH 2nd & \\};
\end{tikzpicture}
\end{document}

Producción:

matriz

información relacionada