My First Map

for this assignment a map will be created showing the Eiffel Tower in Paris. To do that, let’s first load the library Leaflet and then creat the map of Paris.

library(leaflet)
my_map <- leaflet() %>%
  addTiles()
my_map

Now lets link this location to the official website of Eiffel Tower so information will be available if needed.

EiffelTour <- c("<a href= 'http://www.toureiffel.paris' >Eiffel Tour</a>")
leaflet() %>%
addTiles() %>%
addMarkers(lat=48.858053, lng=2.294289, popup = EiffelTour)