Skip to content

Instantly share code, notes, and snippets.

@pepijn-devries
Created January 20, 2016 12:24
Show Gist options
  • Save pepijn-devries/5f10d013e519498812af to your computer and use it in GitHub Desktop.
Save pepijn-devries/5f10d013e519498812af to your computer and use it in GitHub Desktop.
# creat map widget:
map <- leaflet() %>% addTiles() %>%
addCircleMarkers(lng = file_sub$lon,
lat = file_sub$lat,
color = pal(file_sub$hours),
popup = paste0(file_sub$dateTime, "<br/>",
round(file_sub$lon, 6), "<br/>",
round(file_sub$lat, 6))) %>%
addLegend(position = "topleft", pal = pal, values = file_sub$hours, title = "hours past<br/>midnight")
map
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment