Por que a linha comentada não funciona? Eu gostaria de colocar um nó (na verdade, anônimo) declarado em um comando \draw.
\documentclass[border=3mm]{standalone}
\usepackage{tikz}
\usetikzlibrary{positioning, calc}
\begin{document}
\title{arrow test}
\begin{tikzpicture}[>=latex,
font=\sffamily,
]
\node[draw, thin, black, fill=green, rectangle] (P1) at (0cm,0cm){};
\node[draw, thin, black, fill=red, rectangle, right=1cm of P1] (P2){};
\node[draw, thin, black, fill=green, rectangle] (P3) at (0cm,0.5cm){};
\draw[->] (P1) -- (P2);
%\draw[->] (P3) to node[draw, thin, black, fill=red, rectangle, right=1cm of P3](P4){};
\end{tikzpicture}
\end{document}
Responder1
Experimente o seguinte MWE:
\documentclass[tikz, border=3mm]{standalone}
\usetikzlibrary{positioning}
\begin{document}
\title{arrow test}
\begin{tikzpicture}[%>=latex,
node distance = 10mm,
box/.style = {rectangle, draw, thin, fill=#1, font=\sffamily},
]
\node[box=green] (P1) at (0cm,0cm) {};
\node[box=red, right=of P1] (P2) {};
\node[box=green] (P3) at (0cm,1cm) {};
\draw[->] (P1) -- (P2);
\draw[->] (P3) node[box=red, right=of P3] (P4) {} -- (P4);
\end{tikzpicture}
\end{document}
As coordenadas não podem ser "inicializadas"... primeiro você precisa defini-las e depois usá-las. Compare a última linha do seu e do meu MWE.
Responder2
Isso é quase o que você deseja, a falha é que a distância de 1 cm é calculada a partir do centro do primeiro nó (então, no exemplo, os dois nós da direita não estão alinhados corretamente)
\documentclass[border=3mm]{standalone}
\usepackage{tikz}
\usetikzlibrary{positioning, calc}
\begin{document}
\title{arrow test}
\begin{tikzpicture}[>=latex,
font=\sffamily,
]
\node[draw, thin, black, fill=green, rectangle] (P1) at (0cm,0cm){};
\node[draw, thin, black, fill=red, rectangle, right=1cm of P1] (P2){};
\node[draw, thin, black, fill=green,opacity=0.5, rectangle] (P3) at (0cm,0.5cm){};
\draw[->] (P1) -- (P2);
\draw[->] (P3) -- +(1cm,0) node[draw, thin, black, fill=red, rectangle, right] (P4) {};
% \draw[->] (0,0.5cm) node[draw, thin, black, fill=green,opacity=0.5,
% rectangle,left] {} -- +(1cm,0) node[draw, thin, black, fill=red, rectangle,
% right] {};
\end{tikzpicture}
\end{document}
Então, de certa forma, é possível desenhar nós anônimos, o problema é que funciona apenas para dois nós, pois seria necessário alterar o ponto de partida para um caminho sucessivo, o que não é possível se o nó for anônimo.