Plot Maps in R using ggplot2

Hi everyone!

I want to plot in R, a map of specific area in Antarctic region: King George Island. But, I don't find any package or dataset that include this area. Somebody know any command or way to plot maps using only coordinates?

Thanks so much!

You can use leaflet

library(leaflet)

(mymap <- leaflet() %>%
  addTiles() %>%  
  leaflet::setView(lng = -58.4,
                   lat = -62,
                   zoom = 7) %>%
  addMarkers(lng = -58.4,
             lat = -62 ,
             popup="KGI"))
4 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.