This output aims to create a web page using R Markdown that features a map created with Leaflet
library(leaflet)
library(leaflet)
map <- leaflet() %>% addTiles() %>% addMarkers(lat= 14.61199, lng= 120.98738, popup="Best Dimsum Place around UST") %>% addMarkers(lat= 14.61195, lng= 120.98741, popup="Best Mango Shake around UST") %>% addCircleMarkers(lat= 14.61195, lng= 120.98741, weight=1, radius = 30)
map