I would like to plot a function in the range [-2, 2], but PGFplots keeps plotting a little bit more:

Why is that the case and how do I fix it?
Code
\documentclass[varwidth=true, border=2pt]{standalone}
\usepackage[usenames,dvipsnames]{xcolor}
\usepackage{pgfplots}
\pgfplotsset{compat=1.11}
\usepackage{tikz}
\begin{document}
\pgfplotsset{
colormap={whitered}{
color(0.000cm)=(blue!50!black);
color(0.125cm)=(blue);
color(0.250cm)=(SkyBlue);
color(0.375cm)=(SkyBlue);
color(0.500cm)=(SpringGreen);
color(0.625cm)=(yellow);
color(0.750cm)=(yellow);
color(0.875cm)=(red);
color(1.000cm)=(red!50!black)
}
}
\begin{tikzpicture}
\begin{axis}[
domain=-2:2,
view={0}{90},
axis background/.style={fill=white},
]
\addplot3[surf,
samples=50,
shader=interp,
colormap name=whitered]
{x/exp(x^2+y^2)};
% \addplot3[contour gnuplot={number=15, labels=false},
% very thick,
% samples=30]
% {x/exp(x^2+y^2)};
\addplot3[blue,
quiver={
u={(1-2*x^2)*exp(-x^2-y^2)},
v={-2*x*y*exp(-x^2-y^2)},
scale arrows=0.3,
},
-stealth,samples=15]
{x/exp(x^2+y^2)};
\end{axis}
\end{tikzpicture}
\end{document}
