├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS ├── NEWS.md ├── R ├── sync.R └── utils.R ├── README.Rmd ├── README.md ├── inst └── htmlwidgets │ └── lib │ └── Leaflet.Sync │ ├── L.Map.Sync.js │ ├── LICENSE │ └── bower.json ├── leafsync.Rproj └── man ├── figures └── README-sync.png └── latticeView.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafsync/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafsync/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafsync/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafsync/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafsync/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: Tim Appelhans 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafsync/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafsync/HEAD/NEWS -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafsync/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/sync.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafsync/HEAD/R/sync.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafsync/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafsync/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafsync/HEAD/README.md -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/Leaflet.Sync/L.Map.Sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafsync/HEAD/inst/htmlwidgets/lib/Leaflet.Sync/L.Map.Sync.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/Leaflet.Sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafsync/HEAD/inst/htmlwidgets/lib/Leaflet.Sync/LICENSE -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/Leaflet.Sync/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafsync/HEAD/inst/htmlwidgets/lib/Leaflet.Sync/bower.json -------------------------------------------------------------------------------- /leafsync.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafsync/HEAD/leafsync.Rproj -------------------------------------------------------------------------------- /man/figures/README-sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafsync/HEAD/man/figures/README-sync.png -------------------------------------------------------------------------------- /man/latticeView.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/leafsync/HEAD/man/latticeView.Rd --------------------------------------------------------------------------------