Create a leaflet map object.
library(leaflet)
## Warning: package 'leaflet' was built under R version 4.2.3
map <- leaflet() %>% addTiles()
Add the marker to the map and display the map.
map %>%
addTiles() %>%
addMarkers(lat=13.3256, lng=74.8037)