Assignment

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!

library(leaflet)

my_icon <- makeIcon(
  iconUrl = "https://sagradafamilia.org/image/layout_set_logo?img_id=356046&t=1564082284643",
  iconWidth = 170, iconHeight = 100,
  iconAnchorX = 0, iconAnchorY = 0
)

my_map <- leaflet() %>%
  addTiles()
my_map <- my_map %>%
  addMarkers(lat=41.403767, lng=2.174576,
             icon = my_icon, popup = c("<a href='https://sagradafamilia.org/'> La Sagrada Familia</a>"))

my_map