[Solved] ploting ggmap with geom Points (lat_long) annotated 1 to19. Points data is in CSVfile

Here is one approach. I created new lat for text annotation using transform in base R. I used geom_text to add the labels you wanted. I used scale_colour_discrete to change the name of the legend. library(ggmap) library(ggplot2) ### Get a map map <- get_map(location=c(lon=34.832, lat=0.852), color=”color”, source=”google”, maptype=”terrain”, zoom=9) ### Create new lat for annotation … Read more