Instructions

Install and load library

Install “leaflet” package, and load it

# install.packages("leaflet")

library(leaflet)

Leaflet Map

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