This assignment contained a web page created using R Markdown that features a map built with Leaflet and hosted on GitHub Pages.
install.packages('leaflet')
## Installing package into 'C:/Users/Nazanin/Documents/R/win-library/4.1'
## (as 'lib' is unspecified)
## package 'leaflet' successfully unpacked and MD5 sums checked
##
## The downloaded binary packages are in
## C:\Users\Nazanin\AppData\Local\Temp\RtmpQPwxtw\downloaded_packages
require(leaflet)
## Loading required package: leaflet
library(leaflet)
my_map <- leaflet() %>% addTiles() %>% addMarkers(lat=35.7219, lng=51.3347, popup="Charleston")
my_map