I draw world map using library(maptools) > library(ggmap) > library(mapdata) > library(maps) >map("world",fill=TRUE,col="White",bg="light blue",ylim=c(-60,90),mar=c(0,0,0,0)) >native <- c("brazil","sao paulo state") > nat <-geocode(native) >nat.x <- nat$lon > nat.y <- nat$lat >points(nat.x,nat.y,col="yellow",pch=16) How can i put lilte for this map and label points
-- View this message in context: http://r.789695.n4.nabble.com/Labeling-world-map-tp4710296.html Sent from the R help mailing list archive at Nabble.com. ______________________________________________ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.