With the library tmap, a map can be plotted of the world coastlines and borders:
library(tmap)
data("World")
tm_shape(World) + tm_borders()
Is it possible to get the latitude longitude of each x,y point on the map that is used to draw coastlines and borders?
If not, is such a set of data with latitude longitude points of the world map to draw coastlines (and borders) available elsewhere?