I have a map of the USA, ready to go:
mygggmap <- get_map(location = "United States", zoom = 4)
g <- ggmap(myggmap)
The next step is to plot some major cities.
I understand I can create a layer to plot my major cities by their longitude and latitude, something like:
g <- g + geom_density2d(data = citydata, aes(x = lon, y = lat))
but I am wondering if there is a way to plot by the actual name, city and state? Since ggmap is layered over the Google Map API, this should be possible, correct?