Leaflet Map

loading Package

library(leaflet)
## Warning: package 'leaflet' was built under R version 3.5.1

then we create the map

Karnak<- leaflet()%>%
        addTiles()
Karnak

## poping up a link to know more about the site

KarnakTemple <- c("<a href= 'https://en.wikipedia.org/wiki/Karnak' >Karnak</a>")
leaflet() %>%
addTiles() %>%
addMarkers(lat=25.7188, lng=32.6573, popup = KarnakTemple)

you can now access the wiki page by clicking the tile