Create a leaflet map object.
library(leaflet)
## Warning: package 'leaflet' was built under R version 3.6.3
new_map <- leaflet() %>% addTiles()
Add the marker to the map and display the map.
MAHEPopup <- c("<a href= 'https://manipal.edu/mu.html' >Manipal Academy of Higher Education<br><img src='https://cache.careers360.mobi/media/presets/720X480/colleges/social-media/media-gallery/2129/2018/8/7/Manipal-Institute-of-Technology-Manipal-campus2.jpg' width='410' height='132' alt='MAHE' title='MAHE'></a>")
new_map = addMarkers(new_map,lat=13.353448, lng=74.784900, popup = MAHEPopup)
new_map