Created
January 20, 2016 12:24
-
-
Save pepijn-devries/5f10d013e519498812af to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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