So an update:
The view works correctly with the circle example given in the tutorial, but the circle is only drawn if I don't declare my Map class.
I went through and commented out all the SFML functions in my Map class, and the draw event, but just having the Map object in my Main file makes the circle not render.
At this point my Map class is essentially just a 2d array being constructed so I am not sure why it would affect the rendering of anything (It had a vertex array as well before I commented it out).
The reverse seems to be true as well. If I have the circle declared, my map will not render, even if I do not draw the circle.
Is there any chance this is because I have included Graphics.hpp in both files?