服务热线
178 0020 3020
# 打开不了中文的数据,使用了 google map做了一个图
library(ggplot2)
library(ggmap)
library(maps)
library(mapproj)
library(rworldmap)
map <- getMap(resolution = "low") # 获得世界地图
plot(map, xlim = c(-20, 59), ylim = c(35, 71), asp = 1,main="R2-39 European") #欧洲地图
europe.limits <- geocode(c("Grenoble, France")) #从Google map中获取我现在的地理坐标
europe.limits
points(europe.limits$lon, europe.limits$lat, col = "red", pch=23, cex = .8) # 显示我的地理坐标
legend("left",legend = "Grenoble", text.col="red", bg = NA, box.lty = 0)
附件