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!
This map show Hanoi, the capital of Vietnam, is known for its centuries-old architecture and a rich culture with Southeast Asian.
library(leaflet)
my_map<-leaflet() %>%
addTiles() %>%
addMarkers(lat=21.0278, lng= 105.8342, popup="My Home town in Hanoi, Viet Nam")
my_map