Mark it
So far we have been creating maps with a single layer: a base map. We can add layers to this base map similar to how you add layers to a plot in ggplot2
. One of the most common layers to add to a leaflet
map is location markers, which you can add by piping the result of addTiles()
or addProviderTiles()
into the add markers function.
For example, if we plot DataCamp's NYC HQ by passing the coordinates to addMarkers()
as numeric vectors with one element, our web map will place a blue drop pin at the coordinate. In chapters 2 and 3, we will review some options for customizing these markers.
leaflet() %>%
addProviderTiles("CartoDB") %>%
addMarkers(lng = -73.98575, lat = 40.74856)
The dc_hq
tibble is available in your work space.
Este exercício faz parte do curso
Interactive Maps with leaflet in R
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
# Plot DataCamp's NYC HQ
leaflet() %>%
addProviderTiles("CartoDB") %>%
addMarkers(lng = ___[1], lat = ___[1])