Interactive Map with Leaflet

Created on: October 15, 2023

Interactive Map with Leaflet

Created on: October 15, 2023

Hey there I am Kaustubhya Shukla and I made this map using leaflet on 15th October, 2023 It shows my home in Bhilai and my College in Manipal

# Load required libraries
library(leaflet)

library(leaflet)
my_map <- leaflet() %>%
  addTiles()
my_map = addMarkers(my_map, lat = 21.1938, lng = 81.3509, popup = "My Home")
my_map = addMarkers(my_map, lat = 13.3524, lng = 74.7868, popup = "My College")
my_map