At first: sorry if I describe something wrong, I dont really know english mathematics. I want to draw a linear map.
$f:\Bbb R^2 \rightarrow \Bbb R$
$\vec{x} \mapsto |\vec{a}-\vec{x}|$
$\vec{a}=(2,2)$
Using Gnuplot I get this image:

But I think its wrong, because on the image for $f(x,2)=0$. But for example for $f(0,2)=\sqrt{(2-0)^2+(2-2)^2}=\sqrt{4}=2\neq 0$
So what is my mistake and how can I draw the function properly?
Edit: This is the correct graph


You are correct. The GnuPlot result is wrong. The result should be a cone with its tip at the point $(2,2)$.
I think GnuPlot is not interpreting your input function correctly. It is interpreting $\text{abs}(((2,2)-(x,y)))$ as $\text{abs}(2-y)$.
To make things easier for GnuPlot, maybe you could give the formula in a simpler way. For example, you could give $f(x,y) = \sqrt{ (x-2)^2 + (y-2)^2 }$.