library(leaflet)
This project was created as part of the Developing Data Products course of the Coursera Data Science Specialization.
The goal of the project is to create a web page using R Markdown that features a map created with Leaflet, and to host the resulting web page on either GitHub Pages, RPubs, or NeoCities.
clg_map <- leaflet() %>%
addTiles()
my_map = addMarkers(clg_map, lat =19.1978 ,lng =72.8274 , popup="My College")
my_map