Introduction

Create a web page using R Markdown that features a map created with Leaflet. Host your webpage on either GitHub Pages, RPubs, or NeoCities. Your webpage must contain the date that you created the document, and it must contain a map created with Leaflet. We would love to see you show off your creativity!

IISER Kolkata

IISER Kolkata is where I study. This shows IISER Kolkata’s location.

library(leaflet)
my_college_map <- leaflet() %>% addTiles()
my_college_map <- my_college_map %>% addMarkers(lat = 22.9638, lng = 88.5245, popup = "IISER Kolkata")
my_college_map