├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS ├── NEWS.md ├── R ├── addPopupGraphs.R ├── addPopupIframes.R ├── addPopupImages.R ├── addPopupVideos.R ├── addPopupWidgets.R ├── brewRy.R ├── graph.R ├── image.R ├── leafpop-package.R ├── table.R └── utils.R ├── README.Rmd ├── README.md ├── inst ├── htmlwidgets │ └── popup.js └── templates │ ├── popup-graph.brew │ └── popup-style.brew ├── leafpop.Rproj └── man ├── addPopupGraphs.Rd ├── addPopupImages.Rd ├── figures ├── README-graph.png ├── README-image.png └── README-table.png ├── leafpop-package.Rd └── popup.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: Tim Appelhans 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/NEWS -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/addPopupGraphs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/R/addPopupGraphs.R -------------------------------------------------------------------------------- /R/addPopupIframes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/R/addPopupIframes.R -------------------------------------------------------------------------------- /R/addPopupImages.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/R/addPopupImages.R -------------------------------------------------------------------------------- /R/addPopupVideos.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/R/addPopupVideos.R -------------------------------------------------------------------------------- /R/addPopupWidgets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/R/addPopupWidgets.R -------------------------------------------------------------------------------- /R/brewRy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/R/brewRy.R -------------------------------------------------------------------------------- /R/graph.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/R/graph.R -------------------------------------------------------------------------------- /R/image.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/R/image.R -------------------------------------------------------------------------------- /R/leafpop-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/R/leafpop-package.R -------------------------------------------------------------------------------- /R/table.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/R/table.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/README.md -------------------------------------------------------------------------------- /inst/htmlwidgets/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/inst/htmlwidgets/popup.js -------------------------------------------------------------------------------- /inst/templates/popup-graph.brew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/inst/templates/popup-graph.brew -------------------------------------------------------------------------------- /inst/templates/popup-style.brew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/inst/templates/popup-style.brew -------------------------------------------------------------------------------- /leafpop.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/leafpop.Rproj -------------------------------------------------------------------------------- /man/addPopupGraphs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/man/addPopupGraphs.Rd -------------------------------------------------------------------------------- /man/addPopupImages.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/man/addPopupImages.Rd -------------------------------------------------------------------------------- /man/figures/README-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/man/figures/README-graph.png -------------------------------------------------------------------------------- /man/figures/README-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/man/figures/README-image.png -------------------------------------------------------------------------------- /man/figures/README-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/man/figures/README-table.png -------------------------------------------------------------------------------- /man/leafpop-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/man/leafpop-package.Rd -------------------------------------------------------------------------------- /man/popup.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafpop/HEAD/man/popup.Rd --------------------------------------------------------------------------------