#show some of the maps available
nm <- c("osm", "maptoolkit-topo", "mapquest",
"mapquest-aerial", "bing", "stamen-toner",
"stamen-watercolor", "esri", "esri-topo",
"nps", "apple-iphoto", "skobbler")
par(mfrow=c(3,4))
#Korea
for(i in 1:length(nm)){
map <- openmap(c(43.46886761482925,119.94873046875),
c(33.22949814144951,133.9892578125),
minNumTiles=3,type=nm[i])
plot(map)
}
#cloudMade has thousands of map types, and requires a key.
#A default key is provided with the package, but you
#should get your own at http://ww.cloudmade.com and
#apply it with:
#setCloudMadeKey("< your key >")
#plot Korea with a cloudmade map and ggplot2.
map <- openmap(c(43.46886761482925,119.94873046875),
c(33.22949814144951,133.9892578125),
minNumTiles=4,type="cloudmade-1960")
autoplot(map)Run the code above in your browser using DataLab