├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── add.R ├── datamaps.R ├── opts.R ├── pipe.R ├── plugins.R ├── proxies.R ├── utils.R └── zzz.R ├── README.md ├── _pkgdown.yml ├── appveyor.yml ├── cran-comments.md ├── docs ├── 404.html ├── CNAME ├── LICENSE-text.html ├── articles │ ├── get_started.html │ ├── get_started_files │ │ ├── accessible-code-block-0.0.1 │ │ │ └── empty-anchor.js │ │ ├── d3js-3.5.3 │ │ │ └── d3.min.js │ │ ├── datamaps-0.5.0 │ │ │ ├── datamaps-icons.js │ │ │ ├── datamaps.all.hires.min.js │ │ │ └── datamaps.markers.js │ │ ├── datamaps-binding-0.0.2.9000 │ │ │ └── datamaps.js │ │ ├── datamaps-binding-0.0.2 │ │ │ ├── datamaps.js │ │ │ ├── datamaps.yaml │ │ │ └── lib │ │ │ │ ├── d3 │ │ │ │ └── d3.min.js │ │ │ │ ├── datamaps │ │ │ │ ├── datamaps-icons.js │ │ │ │ ├── datamaps.all.hires.min.js │ │ │ │ └── datamaps.markers.js │ │ │ │ └── topojson │ │ │ │ └── topojson.min.js │ │ ├── datamaps-binding-0.0.3 │ │ │ └── datamaps.js │ │ ├── header-attrs-2.3.2 │ │ │ └── header-attrs.js │ │ ├── htmlwidgets-1.0 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.2 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.5.1 │ │ │ └── htmlwidgets.js │ │ └── topojson-1.6.9 │ │ │ └── topojson.min.js │ └── index.html ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── docsearch.css ├── docsearch.js ├── index.html ├── jquery.sticky-kit.min.js ├── link.svg ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml ├── reference │ ├── add_arcs.html │ ├── add_arcs_name.html │ ├── add_bubbles.html │ ├── add_choropleth.html │ ├── add_data.html │ ├── add_graticule.html │ ├── add_labels.html │ ├── add_legend.html │ ├── config_arcs.html │ ├── config_bubbles.html │ ├── config_geo.html │ ├── datamaps-shiny.html │ ├── datamaps.html │ ├── delete_map.html │ ├── icons-plugin.html │ ├── index.html │ ├── markers-plugin.html │ ├── reexports.html │ ├── set_projection.html │ ├── update_arcs.html │ ├── update_bubbles.html │ ├── update_choropleth.html │ ├── update_labels.html │ └── update_legend.html ├── sitemap.txt └── sitemap.xml ├── inst └── htmlwidgets │ ├── datamaps.js │ ├── datamaps.yaml │ └── lib │ ├── d3 │ └── d3.min.js │ ├── datamaps │ ├── datamaps-icons.js │ ├── datamaps.all.hires.min.js │ └── datamaps.markers.js │ └── topojson │ └── topojson.min.js ├── man ├── add_arcs.Rd ├── add_arcs_name.Rd ├── add_bubbles.Rd ├── add_choropleth.Rd ├── add_data.Rd ├── add_graticule.Rd ├── add_labels.Rd ├── add_legend.Rd ├── config_arcs.Rd ├── config_bubbles.Rd ├── config_geo.Rd ├── datamaps-shiny.Rd ├── datamaps.Rd ├── delete_map.Rd ├── icons-plugin.Rd ├── markers-plugin.Rd ├── reexports.Rd ├── set_projection.Rd ├── update_arcs.Rd ├── update_bubbles.Rd ├── update_choropleth.Rd ├── update_labels.Rd └── update_legend.Rd ├── revdep ├── check.R └── checks.rds └── vignettes └── get_started.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2017 2 | COPYRIGHT HOLDER: John Coene 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/add.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/R/add.R -------------------------------------------------------------------------------- /R/datamaps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/R/datamaps.R -------------------------------------------------------------------------------- /R/opts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/R/opts.R -------------------------------------------------------------------------------- /R/pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/R/pipe.R -------------------------------------------------------------------------------- /R/plugins.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/R/plugins.R -------------------------------------------------------------------------------- /R/proxies.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/R/proxies.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/cran-comments.md -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | datamaps.john-coene.com -------------------------------------------------------------------------------- /docs/LICENSE-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/LICENSE-text.html -------------------------------------------------------------------------------- /docs/articles/get_started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/articles/get_started.html -------------------------------------------------------------------------------- /docs/articles/get_started_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/articles/get_started_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/get_started_files/d3js-3.5.3/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/articles/get_started_files/d3js-3.5.3/d3.min.js -------------------------------------------------------------------------------- /docs/articles/get_started_files/datamaps-0.5.0/datamaps-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/articles/get_started_files/datamaps-0.5.0/datamaps-icons.js -------------------------------------------------------------------------------- /docs/articles/get_started_files/datamaps-0.5.0/datamaps.all.hires.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/articles/get_started_files/datamaps-0.5.0/datamaps.all.hires.min.js -------------------------------------------------------------------------------- /docs/articles/get_started_files/datamaps-0.5.0/datamaps.markers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/articles/get_started_files/datamaps-0.5.0/datamaps.markers.js -------------------------------------------------------------------------------- /docs/articles/get_started_files/datamaps-binding-0.0.2.9000/datamaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/articles/get_started_files/datamaps-binding-0.0.2.9000/datamaps.js -------------------------------------------------------------------------------- /docs/articles/get_started_files/datamaps-binding-0.0.2/datamaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/articles/get_started_files/datamaps-binding-0.0.2/datamaps.js -------------------------------------------------------------------------------- /docs/articles/get_started_files/datamaps-binding-0.0.2/datamaps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/articles/get_started_files/datamaps-binding-0.0.2/datamaps.yaml -------------------------------------------------------------------------------- /docs/articles/get_started_files/datamaps-binding-0.0.2/lib/d3/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/articles/get_started_files/datamaps-binding-0.0.2/lib/d3/d3.min.js -------------------------------------------------------------------------------- /docs/articles/get_started_files/datamaps-binding-0.0.2/lib/datamaps/datamaps-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/articles/get_started_files/datamaps-binding-0.0.2/lib/datamaps/datamaps-icons.js -------------------------------------------------------------------------------- /docs/articles/get_started_files/datamaps-binding-0.0.2/lib/datamaps/datamaps.all.hires.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/articles/get_started_files/datamaps-binding-0.0.2/lib/datamaps/datamaps.all.hires.min.js -------------------------------------------------------------------------------- /docs/articles/get_started_files/datamaps-binding-0.0.2/lib/datamaps/datamaps.markers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/articles/get_started_files/datamaps-binding-0.0.2/lib/datamaps/datamaps.markers.js -------------------------------------------------------------------------------- /docs/articles/get_started_files/datamaps-binding-0.0.2/lib/topojson/topojson.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/articles/get_started_files/datamaps-binding-0.0.2/lib/topojson/topojson.min.js -------------------------------------------------------------------------------- /docs/articles/get_started_files/datamaps-binding-0.0.3/datamaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/articles/get_started_files/datamaps-binding-0.0.3/datamaps.js -------------------------------------------------------------------------------- /docs/articles/get_started_files/header-attrs-2.3.2/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/articles/get_started_files/header-attrs-2.3.2/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/get_started_files/htmlwidgets-1.0/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/articles/get_started_files/htmlwidgets-1.0/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/get_started_files/htmlwidgets-1.2/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/articles/get_started_files/htmlwidgets-1.2/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/get_started_files/htmlwidgets-1.5.1/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/articles/get_started_files/htmlwidgets-1.5.1/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/get_started_files/topojson-1.6.9/topojson.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/articles/get_started_files/topojson-1.6.9/topojson.min.js -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/jquery.sticky-kit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/jquery.sticky-kit.min.js -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/add_arcs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/reference/add_arcs.html -------------------------------------------------------------------------------- /docs/reference/add_arcs_name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/reference/add_arcs_name.html -------------------------------------------------------------------------------- /docs/reference/add_bubbles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/reference/add_bubbles.html -------------------------------------------------------------------------------- /docs/reference/add_choropleth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/reference/add_choropleth.html -------------------------------------------------------------------------------- /docs/reference/add_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/reference/add_data.html -------------------------------------------------------------------------------- /docs/reference/add_graticule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/reference/add_graticule.html -------------------------------------------------------------------------------- /docs/reference/add_labels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/reference/add_labels.html -------------------------------------------------------------------------------- /docs/reference/add_legend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/reference/add_legend.html -------------------------------------------------------------------------------- /docs/reference/config_arcs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/reference/config_arcs.html -------------------------------------------------------------------------------- /docs/reference/config_bubbles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/reference/config_bubbles.html -------------------------------------------------------------------------------- /docs/reference/config_geo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/reference/config_geo.html -------------------------------------------------------------------------------- /docs/reference/datamaps-shiny.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/reference/datamaps-shiny.html -------------------------------------------------------------------------------- /docs/reference/datamaps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/reference/datamaps.html -------------------------------------------------------------------------------- /docs/reference/delete_map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/reference/delete_map.html -------------------------------------------------------------------------------- /docs/reference/icons-plugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/reference/icons-plugin.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/markers-plugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/reference/markers-plugin.html -------------------------------------------------------------------------------- /docs/reference/reexports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/reference/reexports.html -------------------------------------------------------------------------------- /docs/reference/set_projection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/reference/set_projection.html -------------------------------------------------------------------------------- /docs/reference/update_arcs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/reference/update_arcs.html -------------------------------------------------------------------------------- /docs/reference/update_bubbles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/reference/update_bubbles.html -------------------------------------------------------------------------------- /docs/reference/update_choropleth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/reference/update_choropleth.html -------------------------------------------------------------------------------- /docs/reference/update_labels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/reference/update_labels.html -------------------------------------------------------------------------------- /docs/reference/update_legend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/reference/update_legend.html -------------------------------------------------------------------------------- /docs/sitemap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/sitemap.txt -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /inst/htmlwidgets/datamaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/inst/htmlwidgets/datamaps.js -------------------------------------------------------------------------------- /inst/htmlwidgets/datamaps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/inst/htmlwidgets/datamaps.yaml -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/d3/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/inst/htmlwidgets/lib/d3/d3.min.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/datamaps/datamaps-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/inst/htmlwidgets/lib/datamaps/datamaps-icons.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/datamaps/datamaps.all.hires.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/inst/htmlwidgets/lib/datamaps/datamaps.all.hires.min.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/datamaps/datamaps.markers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/inst/htmlwidgets/lib/datamaps/datamaps.markers.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/topojson/topojson.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/inst/htmlwidgets/lib/topojson/topojson.min.js -------------------------------------------------------------------------------- /man/add_arcs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/man/add_arcs.Rd -------------------------------------------------------------------------------- /man/add_arcs_name.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/man/add_arcs_name.Rd -------------------------------------------------------------------------------- /man/add_bubbles.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/man/add_bubbles.Rd -------------------------------------------------------------------------------- /man/add_choropleth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/man/add_choropleth.Rd -------------------------------------------------------------------------------- /man/add_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/man/add_data.Rd -------------------------------------------------------------------------------- /man/add_graticule.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/man/add_graticule.Rd -------------------------------------------------------------------------------- /man/add_labels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/man/add_labels.Rd -------------------------------------------------------------------------------- /man/add_legend.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/man/add_legend.Rd -------------------------------------------------------------------------------- /man/config_arcs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/man/config_arcs.Rd -------------------------------------------------------------------------------- /man/config_bubbles.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/man/config_bubbles.Rd -------------------------------------------------------------------------------- /man/config_geo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/man/config_geo.Rd -------------------------------------------------------------------------------- /man/datamaps-shiny.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/man/datamaps-shiny.Rd -------------------------------------------------------------------------------- /man/datamaps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/man/datamaps.Rd -------------------------------------------------------------------------------- /man/delete_map.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/man/delete_map.Rd -------------------------------------------------------------------------------- /man/icons-plugin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/man/icons-plugin.Rd -------------------------------------------------------------------------------- /man/markers-plugin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/man/markers-plugin.Rd -------------------------------------------------------------------------------- /man/reexports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/man/reexports.Rd -------------------------------------------------------------------------------- /man/set_projection.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/man/set_projection.Rd -------------------------------------------------------------------------------- /man/update_arcs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/man/update_arcs.Rd -------------------------------------------------------------------------------- /man/update_bubbles.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/man/update_bubbles.Rd -------------------------------------------------------------------------------- /man/update_choropleth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/man/update_choropleth.Rd -------------------------------------------------------------------------------- /man/update_labels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/man/update_labels.Rd -------------------------------------------------------------------------------- /man/update_legend.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/man/update_legend.Rd -------------------------------------------------------------------------------- /revdep/check.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/revdep/check.R -------------------------------------------------------------------------------- /revdep/checks.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/revdep/checks.rds -------------------------------------------------------------------------------- /vignettes/get_started.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/datamaps/HEAD/vignettes/get_started.Rmd --------------------------------------------------------------------------------