library(leaflet) m <- leaflet() %>% addTiles() %>% # Add default OpenStreetMap map tiles addMarkers(lng=-58.81127, lat=-27.52452, popup="Leaflet con R") m # Print the map