I am looking to draw a 2D plane of vectors in latex. Essentially a combination of the following two pictures.
I can do the first picture with just \path and \draw, and the second with quiver. But, I cant seem to be able to do both. How would I go about doing this?
Image 1
\begin{tikzpicture}
\draw[black,shorten >= 3pt,shorten <= 3pt]
(0,0) to[out=-10,in=150] (6,-2) -- (12,1) to[out=150,in=-10] (5.5,3.7) -- cycle;
(0,0) to[out=-10,in=150] (6,-2) -- (12,1) to[out=150,in=-10] (5.5,3.7) -- cycle;
\end{tikzpicture}
Image 2
\begin{tikzpicture}
\begin{axis}[
xmin = -4, xmax = 4,
ymin = -4, ymax = 4,
zmin = 0, zmax = 1,
axis equal image,
xtick distance = 1,
ytick distance = 1,
view = {20}{90},
scale = 1.25,
]
\addplot3[
quiver = {
u = {sin y},
v = {sin x},
scale arrows = 0.05,
},
quiver/colored = {blue},
-stealth,
domain = -4:4,
domain y = -4:4,
] {0};
\end{axis}
\end{tikzpicture}

