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.
Install “leaflet” package, and load it
# install.packages("leaflet")
library(leaflet)
Some of the visiting places in Ethiopia
mark<-leaflet()
mark<-addTiles(mark)
mark<-addMarkers(mark,lat = 12.03114,lng = 39.044731,popup="Lalibela")
mark<-addMarkers(mark,lat = 12.6080,lng = 37.4696,popup="Fasilides")
mark<-addMarkers(mark,lat = 14.1340,lng = 38.7473,popup="Axum")
mark