Developing Data Products: Assignment 1

24th of April, 2019

Creating Map

First, we have to get the package leaflet:

library(leaflet)

And finally we can create the map:

my_map <- leaflet() %>% addTiles() 
my_map <- my_map %>% addMarkers(lat=48.693831, lng= 6.183252, popup="Place Stanislas")
my_map