Submissions

Here are some places of interest in and around Manipal.

library(leaflet)
library(dplyr)

m <- leaflet() %>%
  addTiles() %>%  
  addMarkers(lat=13.336822067, lng=74.7935710, popup="Arbi Falls,Manipal") %>%
  addMarkers(lat=13.336822067052111, lng=74.79357100528073, popup="Arbi Falls,        Manipal") %>%
  addMarkers(lat=13.34176252252065,lng=74.78579589905729, popup="Manipal Lake,       Manipal") %>%
  addMarkers(lat=13.342729905701367,lng=74.78917624077334, popup="Hasta Shilpa       Heritage village, Manipal") %>%
  addMarkers(lat=13.373948737108073,lng=74.78661252222871, popup="End Point,      Manipal") %>%
 
  setView (lat=13.353960223160826, lng=74.78974502319532, zoom=13) 
  
  m

https://rpubs.com/Rajeet99/826195