├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CRAN-RELEASE ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── R ├── dependencies.R ├── options.R └── timeline.R ├── README.Rmd ├── README.md ├── cran-comments.md ├── inst ├── examples │ └── example_leaftime.R └── www │ ├── Leaflet.timeline │ └── leaflet.timeline.js │ └── binding │ ├── leaftime-binding.css │ └── leaftime-binding.js ├── leaftime.Rproj └── man ├── addTimeline.Rd ├── leaftimeDependency.Rd ├── sliderOptions.Rd ├── styleOptions.Rd └── timelineOptions.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/leaftime/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/leaftime/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/leaftime/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/leaftime/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CRAN-RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/leaftime/HEAD/CRAN-RELEASE -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/leaftime/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: Kent Russell 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/leaftime/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/leaftime/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/dependencies.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/leaftime/HEAD/R/dependencies.R -------------------------------------------------------------------------------- /R/options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/leaftime/HEAD/R/options.R -------------------------------------------------------------------------------- /R/timeline.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/leaftime/HEAD/R/timeline.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/leaftime/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/leaftime/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/leaftime/HEAD/cran-comments.md -------------------------------------------------------------------------------- /inst/examples/example_leaftime.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/leaftime/HEAD/inst/examples/example_leaftime.R -------------------------------------------------------------------------------- /inst/www/Leaflet.timeline/leaflet.timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/leaftime/HEAD/inst/www/Leaflet.timeline/leaflet.timeline.js -------------------------------------------------------------------------------- /inst/www/binding/leaftime-binding.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/leaftime/HEAD/inst/www/binding/leaftime-binding.css -------------------------------------------------------------------------------- /inst/www/binding/leaftime-binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/leaftime/HEAD/inst/www/binding/leaftime-binding.js -------------------------------------------------------------------------------- /leaftime.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/leaftime/HEAD/leaftime.Rproj -------------------------------------------------------------------------------- /man/addTimeline.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/leaftime/HEAD/man/addTimeline.Rd -------------------------------------------------------------------------------- /man/leaftimeDependency.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/leaftime/HEAD/man/leaftimeDependency.Rd -------------------------------------------------------------------------------- /man/sliderOptions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/leaftime/HEAD/man/sliderOptions.Rd -------------------------------------------------------------------------------- /man/styleOptions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/leaftime/HEAD/man/styleOptions.Rd -------------------------------------------------------------------------------- /man/timelineOptions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/leaftime/HEAD/man/timelineOptions.Rd --------------------------------------------------------------------------------