I am using a macOS Big Sur
This is the simple code I am using- regardless of the city I only get one point in the map, centered around Nebraska.
library(maps)
library(ggmap)
library(usmap)
library(ggplot2)
GeoLocations <- data.frame(City = c("Atlanta","Seattle"),
Latitude = c(33.45,47.37),
Longitude = c(-84.23,-122.2))
plot_usmap(regions ="state") +
geom_point(data = GeoLocations, aes(x = Longitude, y = Latitude))
Help is much appreciated