坐标不适合ggmap上的正确位置

时间:2019-02-08 06:35:17

标签: r ggplot2 ggmap

我正在尝试使用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 using ggmap

显然,MIT没有出现在正确的位置。你知道我在做什么吗?

0 个答案:

没有答案