我正在尝试使用ggmap映射MIT的坐标,但是geom_point()不在正确的位置显示。
这就是我所做的:
LAT <- 42.2 # coordinates of MIT
LON <- -71.1
mit_coor <- data.frame(LAT, LON)
qmap("boston", zoom = 11) + geom_point(aes(LON, LAT), color = "red", data = x)
结果是:
显然,MIT没有出现在正确的位置。你知道我在做什么吗?