I'm trying to create a map using the qmap (part of ggmap). Here's an example piece of code to illustrate by question. It's kind of silly, but it's cleaner than using my own data.
install.packages("ggmap")
library(ggmap)
qmap("Capitol Building, Washington DC", zoom = 15)
So here's my question: I'd like to zoom in a good bit (zoom=15) on the area around the Capitol Building, to get lots of street detail. But I also want to include the Washington Monument in my map. To do this, I'd like to extend the western part of the map and make it rectangular.
Does anybody know how to do that? Any insight would be much appreciated. Thanks for your patience with a beginner.