├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── R ├── basemap.R ├── chunkerize.R ├── codeinc.R ├── genmeths.R ├── legend.R ├── rleafmap-package.R ├── serial.R ├── splayer.R ├── toGeoJSON.R ├── toJS.R ├── ui.R ├── utilities.R └── writemap.R ├── README.md ├── _data ├── _dataicons.js ├── _datalines.js ├── _datapoints.js └── _datapolygons.js ├── _map.html ├── data ├── campsites.RData ├── hotels.RData └── velov.RData ├── man ├── basemap.Rd ├── bmCredit.Rd ├── bmServer.Rd ├── bmSource.Rd ├── campsites.Rd ├── chunkerize.Rd ├── col2hexa.Rd ├── hotels.Rd ├── layerLegend.Rd ├── printspl.Rd ├── rleafmap.Rd ├── spLayer.Rd ├── spLayer.SpatialGridDataFrame.Rd ├── spLayer.SpatialLines.Rd ├── spLayer.SpatialPoints.Rd ├── spLayer.SpatialPolygons.Rd ├── spLayer.default.Rd ├── spLayerControl.Rd ├── summarymaplayer.Rd ├── toGeoJSON.Rd ├── toJS.Rd ├── ui.Rd ├── uiJS.Rd ├── velov.Rd └── writeMap.Rd └── rleafmap.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | cran-comments.md 5 | CRAN-SUBMISSION 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/basemap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/R/basemap.R -------------------------------------------------------------------------------- /R/chunkerize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/R/chunkerize.R -------------------------------------------------------------------------------- /R/codeinc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/R/codeinc.R -------------------------------------------------------------------------------- /R/genmeths.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/R/genmeths.R -------------------------------------------------------------------------------- /R/legend.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/R/legend.R -------------------------------------------------------------------------------- /R/rleafmap-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/R/rleafmap-package.R -------------------------------------------------------------------------------- /R/serial.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/R/serial.R -------------------------------------------------------------------------------- /R/splayer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/R/splayer.R -------------------------------------------------------------------------------- /R/toGeoJSON.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/R/toGeoJSON.R -------------------------------------------------------------------------------- /R/toJS.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/R/toJS.R -------------------------------------------------------------------------------- /R/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/R/ui.R -------------------------------------------------------------------------------- /R/utilities.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/R/utilities.R -------------------------------------------------------------------------------- /R/writemap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/R/writemap.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/README.md -------------------------------------------------------------------------------- /_data/_dataicons.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_data/_datalines.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_data/_datapoints.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_data/_datapolygons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/_data/_datapolygons.js -------------------------------------------------------------------------------- /_map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/_map.html -------------------------------------------------------------------------------- /data/campsites.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/data/campsites.RData -------------------------------------------------------------------------------- /data/hotels.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/data/hotels.RData -------------------------------------------------------------------------------- /data/velov.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/data/velov.RData -------------------------------------------------------------------------------- /man/basemap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/man/basemap.Rd -------------------------------------------------------------------------------- /man/bmCredit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/man/bmCredit.Rd -------------------------------------------------------------------------------- /man/bmServer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/man/bmServer.Rd -------------------------------------------------------------------------------- /man/bmSource.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/man/bmSource.Rd -------------------------------------------------------------------------------- /man/campsites.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/man/campsites.Rd -------------------------------------------------------------------------------- /man/chunkerize.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/man/chunkerize.Rd -------------------------------------------------------------------------------- /man/col2hexa.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/man/col2hexa.Rd -------------------------------------------------------------------------------- /man/hotels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/man/hotels.Rd -------------------------------------------------------------------------------- /man/layerLegend.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/man/layerLegend.Rd -------------------------------------------------------------------------------- /man/printspl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/man/printspl.Rd -------------------------------------------------------------------------------- /man/rleafmap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/man/rleafmap.Rd -------------------------------------------------------------------------------- /man/spLayer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/man/spLayer.Rd -------------------------------------------------------------------------------- /man/spLayer.SpatialGridDataFrame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/man/spLayer.SpatialGridDataFrame.Rd -------------------------------------------------------------------------------- /man/spLayer.SpatialLines.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/man/spLayer.SpatialLines.Rd -------------------------------------------------------------------------------- /man/spLayer.SpatialPoints.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/man/spLayer.SpatialPoints.Rd -------------------------------------------------------------------------------- /man/spLayer.SpatialPolygons.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/man/spLayer.SpatialPolygons.Rd -------------------------------------------------------------------------------- /man/spLayer.default.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/man/spLayer.default.Rd -------------------------------------------------------------------------------- /man/spLayerControl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/man/spLayerControl.Rd -------------------------------------------------------------------------------- /man/summarymaplayer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/man/summarymaplayer.Rd -------------------------------------------------------------------------------- /man/toGeoJSON.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/man/toGeoJSON.Rd -------------------------------------------------------------------------------- /man/toJS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/man/toJS.Rd -------------------------------------------------------------------------------- /man/ui.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/man/ui.Rd -------------------------------------------------------------------------------- /man/uiJS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/man/uiJS.Rd -------------------------------------------------------------------------------- /man/velov.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/man/velov.Rd -------------------------------------------------------------------------------- /man/writeMap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/man/writeMap.Rd -------------------------------------------------------------------------------- /rleafmap.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkeck/rleafmap/HEAD/rleafmap.Rproj --------------------------------------------------------------------------------