Overview

The aim is to Create a web page using R Markdown that features a map created with Leaflet.

Loadding the needed library

library(leaflet)

Creating The Map

 my_map <- leaflet() %>% addTiles()  %>% addAwesomeMarkers(lat = 30.0189, lng = 31.4997, popup = "AUC")
my_map