├── .Rbuildignore ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── NAMESPACE ├── NEWS ├── NEWS.md ├── R ├── LonLat2XY.R ├── OSM_scale_lookup.R ├── RgoogleMaps-functions.R ├── XY2LonLat.R ├── attach.R ├── bb2bbox.R ├── calc_zoom.r ├── coord_map.R ├── crime.R ├── file_drawer.R ├── geocode.R ├── geom_leg.R ├── get_cloudmademap.R ├── get_googlemap.R ├── get_map.R ├── get_navermap.R ├── get_openstreetmap.R ├── get_stadiamap.R ├── get_stamenmap.R ├── ggimage.R ├── gglocator.R ├── ggmap-defunct.R ├── ggmap-package.R ├── ggmap.R ├── ggmap_options.R ├── hadley.R ├── helpers.R ├── inset.R ├── inset_raster.R ├── make_bbox.R ├── mapdist.R ├── not-exported-ggplot2.R ├── not-exported-plyr.R ├── print.R ├── qmap.R ├── qmplot.R ├── register_google.R ├── register_stadiamaps.R ├── revgeocode.R ├── route.R ├── theme_inset.R ├── theme_nothing.R ├── trek.R ├── wind.R └── zips.R ├── README.Rmd ├── README.md ├── appveyor.yml ├── cran-comments.md ├── data ├── crime.rda ├── hadley.rda ├── wind.rda └── zips.rda ├── ggmap.Rproj ├── inst └── CITATION ├── man ├── LonLat2XY.Rd ├── OSM_scale_lookup.Rd ├── XY2LonLat.Rd ├── bb2bbox.Rd ├── calc_zoom.Rd ├── crime.Rd ├── file_drawer.Rd ├── geocode.Rd ├── geom_leg.Rd ├── get_cloudmademap.Rd ├── get_googlemap.Rd ├── get_map.Rd ├── get_navermap.Rd ├── get_openstreetmap.Rd ├── get_stadiamap.Rd ├── get_stamenmap.Rd ├── ggimage.Rd ├── gglocator.Rd ├── ggmap-defunct.Rd ├── ggmap.Rd ├── ggmap_options.Rd ├── ggmapplot.Rd ├── hadley.Rd ├── inset.Rd ├── inset_raster.Rd ├── legs2route.Rd ├── make_bbox.Rd ├── mapdist.Rd ├── print.ggmap.Rd ├── qmap.Rd ├── qmplot.Rd ├── reexports.Rd ├── register_google.Rd ├── register_stadiamaps.Rd ├── revgeocode.Rd ├── route.Rd ├── theme_inset.Rd ├── theme_nothing.Rd ├── trek.Rd ├── wind.Rd └── zips.Rd ├── revdep ├── .gitignore ├── README.md ├── check.R ├── checks.rds ├── cran.md ├── email.yml ├── failures.md ├── problems.md └── summary.md ├── tests ├── testthat.R └── testthat │ ├── test-LonLat2XY.R │ ├── test-calc_zoom.R │ ├── test-data.R │ ├── test-encoding.R │ ├── test-ggmap.R │ └── util.R └── tools ├── README-faceting-1.png ├── README-ggmap-1.png ├── README-ggmap-layers-1.png ├── README-ggmap-patchwork-1.png ├── README-google_maps-1.png ├── README-maptypes-1.png ├── README-qmplot-1.png └── README-route_trek-1.png /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/NEWS -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/LonLat2XY.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/LonLat2XY.R -------------------------------------------------------------------------------- /R/OSM_scale_lookup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/OSM_scale_lookup.R -------------------------------------------------------------------------------- /R/RgoogleMaps-functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/RgoogleMaps-functions.R -------------------------------------------------------------------------------- /R/XY2LonLat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/XY2LonLat.R -------------------------------------------------------------------------------- /R/attach.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/attach.R -------------------------------------------------------------------------------- /R/bb2bbox.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/bb2bbox.R -------------------------------------------------------------------------------- /R/calc_zoom.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/calc_zoom.r -------------------------------------------------------------------------------- /R/coord_map.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/coord_map.R -------------------------------------------------------------------------------- /R/crime.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/crime.R -------------------------------------------------------------------------------- /R/file_drawer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/file_drawer.R -------------------------------------------------------------------------------- /R/geocode.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/geocode.R -------------------------------------------------------------------------------- /R/geom_leg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/geom_leg.R -------------------------------------------------------------------------------- /R/get_cloudmademap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/get_cloudmademap.R -------------------------------------------------------------------------------- /R/get_googlemap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/get_googlemap.R -------------------------------------------------------------------------------- /R/get_map.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/get_map.R -------------------------------------------------------------------------------- /R/get_navermap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/get_navermap.R -------------------------------------------------------------------------------- /R/get_openstreetmap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/get_openstreetmap.R -------------------------------------------------------------------------------- /R/get_stadiamap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/get_stadiamap.R -------------------------------------------------------------------------------- /R/get_stamenmap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/get_stamenmap.R -------------------------------------------------------------------------------- /R/ggimage.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/ggimage.R -------------------------------------------------------------------------------- /R/gglocator.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/gglocator.R -------------------------------------------------------------------------------- /R/ggmap-defunct.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/ggmap-defunct.R -------------------------------------------------------------------------------- /R/ggmap-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/ggmap-package.R -------------------------------------------------------------------------------- /R/ggmap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/ggmap.R -------------------------------------------------------------------------------- /R/ggmap_options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/ggmap_options.R -------------------------------------------------------------------------------- /R/hadley.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/hadley.R -------------------------------------------------------------------------------- /R/helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/helpers.R -------------------------------------------------------------------------------- /R/inset.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/inset.R -------------------------------------------------------------------------------- /R/inset_raster.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/inset_raster.R -------------------------------------------------------------------------------- /R/make_bbox.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/make_bbox.R -------------------------------------------------------------------------------- /R/mapdist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/mapdist.R -------------------------------------------------------------------------------- /R/not-exported-ggplot2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/not-exported-ggplot2.R -------------------------------------------------------------------------------- /R/not-exported-plyr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/not-exported-plyr.R -------------------------------------------------------------------------------- /R/print.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/print.R -------------------------------------------------------------------------------- /R/qmap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/qmap.R -------------------------------------------------------------------------------- /R/qmplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/qmplot.R -------------------------------------------------------------------------------- /R/register_google.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/register_google.R -------------------------------------------------------------------------------- /R/register_stadiamaps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/register_stadiamaps.R -------------------------------------------------------------------------------- /R/revgeocode.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/revgeocode.R -------------------------------------------------------------------------------- /R/route.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/route.R -------------------------------------------------------------------------------- /R/theme_inset.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/theme_inset.R -------------------------------------------------------------------------------- /R/theme_nothing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/theme_nothing.R -------------------------------------------------------------------------------- /R/trek.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/trek.R -------------------------------------------------------------------------------- /R/wind.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/wind.R -------------------------------------------------------------------------------- /R/zips.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/R/zips.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/crime.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/data/crime.rda -------------------------------------------------------------------------------- /data/hadley.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/data/hadley.rda -------------------------------------------------------------------------------- /data/wind.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/data/wind.rda -------------------------------------------------------------------------------- /data/zips.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/data/zips.rda -------------------------------------------------------------------------------- /ggmap.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/ggmap.Rproj -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/inst/CITATION -------------------------------------------------------------------------------- /man/LonLat2XY.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/LonLat2XY.Rd -------------------------------------------------------------------------------- /man/OSM_scale_lookup.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/OSM_scale_lookup.Rd -------------------------------------------------------------------------------- /man/XY2LonLat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/XY2LonLat.Rd -------------------------------------------------------------------------------- /man/bb2bbox.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/bb2bbox.Rd -------------------------------------------------------------------------------- /man/calc_zoom.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/calc_zoom.Rd -------------------------------------------------------------------------------- /man/crime.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/crime.Rd -------------------------------------------------------------------------------- /man/file_drawer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/file_drawer.Rd -------------------------------------------------------------------------------- /man/geocode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/geocode.Rd -------------------------------------------------------------------------------- /man/geom_leg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/geom_leg.Rd -------------------------------------------------------------------------------- /man/get_cloudmademap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/get_cloudmademap.Rd -------------------------------------------------------------------------------- /man/get_googlemap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/get_googlemap.Rd -------------------------------------------------------------------------------- /man/get_map.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/get_map.Rd -------------------------------------------------------------------------------- /man/get_navermap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/get_navermap.Rd -------------------------------------------------------------------------------- /man/get_openstreetmap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/get_openstreetmap.Rd -------------------------------------------------------------------------------- /man/get_stadiamap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/get_stadiamap.Rd -------------------------------------------------------------------------------- /man/get_stamenmap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/get_stamenmap.Rd -------------------------------------------------------------------------------- /man/ggimage.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/ggimage.Rd -------------------------------------------------------------------------------- /man/gglocator.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/gglocator.Rd -------------------------------------------------------------------------------- /man/ggmap-defunct.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/ggmap-defunct.Rd -------------------------------------------------------------------------------- /man/ggmap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/ggmap.Rd -------------------------------------------------------------------------------- /man/ggmap_options.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/ggmap_options.Rd -------------------------------------------------------------------------------- /man/ggmapplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/ggmapplot.Rd -------------------------------------------------------------------------------- /man/hadley.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/hadley.Rd -------------------------------------------------------------------------------- /man/inset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/inset.Rd -------------------------------------------------------------------------------- /man/inset_raster.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/inset_raster.Rd -------------------------------------------------------------------------------- /man/legs2route.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/legs2route.Rd -------------------------------------------------------------------------------- /man/make_bbox.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/make_bbox.Rd -------------------------------------------------------------------------------- /man/mapdist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/mapdist.Rd -------------------------------------------------------------------------------- /man/print.ggmap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/print.ggmap.Rd -------------------------------------------------------------------------------- /man/qmap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/qmap.Rd -------------------------------------------------------------------------------- /man/qmplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/qmplot.Rd -------------------------------------------------------------------------------- /man/reexports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/reexports.Rd -------------------------------------------------------------------------------- /man/register_google.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/register_google.Rd -------------------------------------------------------------------------------- /man/register_stadiamaps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/register_stadiamaps.Rd -------------------------------------------------------------------------------- /man/revgeocode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/revgeocode.Rd -------------------------------------------------------------------------------- /man/route.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/route.Rd -------------------------------------------------------------------------------- /man/theme_inset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/theme_inset.Rd -------------------------------------------------------------------------------- /man/theme_nothing.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/theme_nothing.Rd -------------------------------------------------------------------------------- /man/trek.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/trek.Rd -------------------------------------------------------------------------------- /man/wind.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/wind.Rd -------------------------------------------------------------------------------- /man/zips.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/man/zips.Rd -------------------------------------------------------------------------------- /revdep/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/revdep/.gitignore -------------------------------------------------------------------------------- /revdep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/revdep/README.md -------------------------------------------------------------------------------- /revdep/check.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/revdep/check.R -------------------------------------------------------------------------------- /revdep/checks.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/revdep/checks.rds -------------------------------------------------------------------------------- /revdep/cran.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/revdep/cran.md -------------------------------------------------------------------------------- /revdep/email.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/revdep/email.yml -------------------------------------------------------------------------------- /revdep/failures.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /revdep/problems.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /revdep/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/revdep/summary.md -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-LonLat2XY.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/tests/testthat/test-LonLat2XY.R -------------------------------------------------------------------------------- /tests/testthat/test-calc_zoom.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/tests/testthat/test-calc_zoom.R -------------------------------------------------------------------------------- /tests/testthat/test-data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/tests/testthat/test-data.R -------------------------------------------------------------------------------- /tests/testthat/test-encoding.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/tests/testthat/test-encoding.R -------------------------------------------------------------------------------- /tests/testthat/test-ggmap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/tests/testthat/test-ggmap.R -------------------------------------------------------------------------------- /tests/testthat/util.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/tests/testthat/util.R -------------------------------------------------------------------------------- /tools/README-faceting-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/tools/README-faceting-1.png -------------------------------------------------------------------------------- /tools/README-ggmap-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/tools/README-ggmap-1.png -------------------------------------------------------------------------------- /tools/README-ggmap-layers-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/tools/README-ggmap-layers-1.png -------------------------------------------------------------------------------- /tools/README-ggmap-patchwork-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/tools/README-ggmap-patchwork-1.png -------------------------------------------------------------------------------- /tools/README-google_maps-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/tools/README-google_maps-1.png -------------------------------------------------------------------------------- /tools/README-maptypes-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/tools/README-maptypes-1.png -------------------------------------------------------------------------------- /tools/README-qmplot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/tools/README-qmplot-1.png -------------------------------------------------------------------------------- /tools/README-route_trek-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkahle/ggmap/HEAD/tools/README-route_trek-1.png --------------------------------------------------------------------------------