I want to draw an arrow tip to every node/coordinate in a path. But tikz draws them only to the first and last point. Is there an option for that purpose? Or have I to splitt the path into its single parts?
Here is an example:

\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
% What should I add to this:
\draw [|<->|] (0.4,2.4) to node[right] {$L$} ++(0,-1.5)
to node[right] {$d$} ++(0,-1)
to node[right] {$h$} ++(0,-1);
% To get:
\draw [|<->|] (0.8,2.4) to node[right] {$L$} (0.8,0.9);
\draw [|<->|] (0.8,0.9) to node[right] {$d$} (0.8,-0.1);
\draw [|<->|] (0.8,-0.1) to node[right] {$h$} (0.8,-1.1);
\end{tikzpicture}
\end{document}