Introduction

As part if Developing Data Products course we are to develop a webpage with a map created using the leaflet widget.

Submission

This is my submission. It show the location of on the most scenic places in Karnataka.

##install the leaflet library if ot already installed by using the below statement
#install.packages("leaflet")

library(leaflet)            #loading leaflet library to use a map widget
## Warning: package 'leaflet' was built under R version 3.6.3
my_map <- leaflet() %>%
  addTiles() %>%
  addMarkers(lat=13.719086, lng=75.117059, popup = "Kavaledurga")

##my_map contains the map of with pin dropped in the region specified by the longitude and longitude
#popup is just a message you get when you hover the mouse over that region
my_map