This is an R Markdown document. It shows the location of UNALM (Universidad Agraria La Molina) in Perรบ using R leaflet library.
library (leaflet)
my_map = leaflet() %>% addTiles() %>%
addMarkers(lat=-12.0801, lng=-76.950, popup="UNALM")
my_map