Rubén Núñez

21/06/2020

Create a web page using R Markdown that features a map created with Leaflet.

Host your webpage on either GitHub Pages, RPubs, or NeoCities.

Your webpage must contain the date that you created the document, and it must contain a map created with Leaflet. We would love to see you show off your creativity!

Preparing the map

library(leaflet)
## Warning: package 'leaflet' was built under R version 3.6.3
my_map <- leaflet() %>% 
addTiles() %>%
addMarkers(lat=40.243523, lng=-3.698849, popup = "My home town, center of the Iberian peninsula")

Preparing the map

my_map