This project is to (1) create a web page using R Markdown that features an interactive map created with Leaflet and (2) host the webpage on RPubs.
This is an interactive map with a pin and pop up of Lee Garden Hotel as shown below:
library(leaflet)
my_map <- leaflet() %>% addTiles() %>%
addMarkers(lat=22.27846539254663, lng=114.18566069815385, popup="Lee Garden")
my_map