Maps in leaflet

Maps with leaflet

According with the coursera activity public a map in rpubs using the library leaflet, here use 10 aleatories numbers with longitude equal arround of 174 and 179, and longitude eual to -39 and -37:

# install.packages("leaflet")
library(leaflet)
set.seed(123)
mapas <- leaflet() %>%
  addTiles() %>%  
  addMarkers(lng=runif(10,174,179), lat=runif(10,-39,-37), popup="Aleatories numbers")
mapas