Johns Hopkins University Data Science Specialization Developing Data Products Week 2 Assignment

Let’s create a map that shows Cabeza del Caballo, Salamanca:

To do that, let’s first load the library Leaflet.

library(leaflet)

Creating the map of CDC.

myMap <- leaflet() %>%
addTiles()
CDC <- c("<a href= 'http://www.cabezadelcaballo.org/inicioAction.do/'>Cabeza del caballo</a>")
leaflet() %>%
addTiles() %>%
addMarkers(lat=41.1469667, lng=-6.5621316)