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

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

Submission I create an interactive map with a pin and pop up of my home.

Map creating

library(leaflet)
## Warning: package 'leaflet' was built under R version 3.6.3
my_map <- leaflet() %>%
  addTiles() %>%
addMarkers(lat=22.3677690, lng=91.8502109, popup = "Home sweet home")
my_map

there is a location of my sweet room.