├── .Rbuildignore ├── .bowerrc ├── .eslintrc.json ├── .github ├── .gitignore ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── DESCRIPTION ├── Gruntfile.js ├── LICENSE ├── LICENSE.md ├── LICENSE.note ├── NAMESPACE ├── NEWS.md ├── R ├── colors.R ├── controls.R ├── data.R ├── dependencies.R ├── layers.R ├── leaflet-package.R ├── leaflet.R ├── legacy.R ├── legend.R ├── mapPane.R ├── methods.R ├── normalize-SharedData.R ├── normalize-map.R ├── normalize-sf.R ├── normalize-sp.R ├── normalize-terra.R ├── normalize.R ├── plugin-awesomeMarkers.R ├── plugin-easybutton.R ├── plugin-graticule.R ├── plugin-measure.R ├── plugin-minimap.R ├── plugin-omnivore.R ├── plugin-providers.R ├── plugin-simplegraticule.R ├── plugin-terminator.R ├── scalebar.R ├── selection.R ├── shiny.R ├── staticimports.R ├── utils.R ├── zzz.R └── zzz_viztest.R ├── README.md ├── cran-comments.md ├── data-raw ├── atlStorms2005.R ├── breweries91.R └── gadmCHE.R ├── data ├── atlStorms2005.rda ├── breweries91.rda └── gadmCHE.rda ├── inst ├── csv │ └── uspop2000.csv ├── examples │ ├── Historic_sites_and_monuments_point.kml │ ├── Seamask_medium_res_polygon.kml │ ├── awesomeMarkers.R │ ├── easyButton.R │ ├── emptyData.R │ ├── geojson.R │ ├── graticule.R │ ├── groupOptions.R │ ├── highlight-polygons.R │ ├── icons.R │ ├── labels.R │ ├── leaflet-measure.R │ ├── leaflet.R │ ├── legend.R │ ├── marker-clustering.R │ ├── minimap.R │ ├── normalize.R │ ├── polygon-colors.R │ ├── proj4Leaflet-PolarProjections.R │ ├── proj4Leaflet-TMS.R │ ├── proj4Leaflet.R │ ├── providers-digitalglobe.R │ ├── providers-shiny.R │ ├── providers.R │ ├── shiny-markercluster.R │ ├── shiny.R │ ├── simpleGraticule.R │ ├── terminator.R │ └── test.json ├── htmlwidgets │ ├── assets │ │ └── leaflet.js │ ├── lib │ │ ├── leaflet-measure │ │ │ ├── images │ │ │ │ ├── cancel.png │ │ │ │ ├── cancel_@2X.png │ │ │ │ ├── check.png │ │ │ │ ├── check_@2X.png │ │ │ │ ├── focus.png │ │ │ │ ├── focus_@2X.png │ │ │ │ ├── rulers.png │ │ │ │ ├── rulers_@2X.png │ │ │ │ ├── start.png │ │ │ │ ├── start_@2X.png │ │ │ │ ├── trash.png │ │ │ │ └── trash_@2X.png │ │ │ ├── leaflet-measure.css │ │ │ ├── leaflet-measure.js │ │ │ └── leaflet-measure.min.js │ │ ├── leaflet-omnivore │ │ │ ├── LICENSE │ │ │ ├── index.js │ │ │ ├── leaflet-omnivore.min.js │ │ │ └── package.json │ │ ├── leaflet │ │ │ ├── images │ │ │ │ ├── layers-2x.png │ │ │ │ ├── layers.png │ │ │ │ ├── marker-icon-2x.png │ │ │ │ ├── marker-icon.png │ │ │ │ └── marker-shadow.png │ │ │ ├── leaflet-src.js │ │ │ ├── leaflet-src.js.map │ │ │ ├── leaflet.css │ │ │ ├── leaflet.js │ │ │ └── leaflet.js.map │ │ ├── leafletfix │ │ │ └── leafletfix.css │ │ └── rstudio_leaflet │ │ │ ├── images │ │ │ └── 1px.png │ │ │ └── rstudio_leaflet.css │ └── plugins │ │ ├── Leaflet-MiniMap │ │ ├── Control.MiniMap.css │ │ ├── Control.MiniMap.js │ │ ├── Control.MiniMap.min.css │ │ ├── Control.MiniMap.min.js │ │ ├── Minimap-binding.js │ │ └── images │ │ │ ├── toggle.png │ │ │ └── toggle.svg │ │ ├── Leaflet.EasyButton │ │ ├── EasyButton-binding.js │ │ ├── LICENSE │ │ ├── easy-button.css │ │ └── easy-button.js │ │ ├── Leaflet.Graticule │ │ ├── Graticule-binding.js │ │ ├── L.Graticule.js │ │ └── Leaflet.Graticule.js │ │ ├── Leaflet.SimpleGraticule │ │ ├── L.SimpleGraticule.css │ │ ├── L.SimpleGraticule.js │ │ └── SimpleGraticule-binding.js │ │ ├── Leaflet.Terminator │ │ ├── L.Terminator.js │ │ └── Terminator-binding.js │ │ ├── Leaflet.awesome-markers │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.js │ │ ├── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ ├── ionicons.eot │ │ │ ├── ionicons.svg │ │ │ ├── ionicons.ttf │ │ │ └── ionicons.woff │ │ ├── images │ │ │ ├── markers-matte.png │ │ │ ├── markers-matte@2x.png │ │ │ ├── markers-plain.png │ │ │ ├── markers-shadow.png │ │ │ ├── markers-shadow@2x.png │ │ │ ├── markers-soft.png │ │ │ └── markers-soft@2x.png │ │ ├── ionicons.min.css │ │ ├── leaflet.awesome-markers.css │ │ ├── leaflet.awesome-markers.js │ │ └── leaflet.awesome-markers.min.js │ │ ├── Leaflet.markercluster │ │ ├── MIT-LICENCE.txt │ │ ├── MarkerCluster.Default.css │ │ ├── MarkerCluster.css │ │ ├── leaflet.markercluster-src.js │ │ ├── leaflet.markercluster.freezable-src.js │ │ ├── leaflet.markercluster.freezable.js │ │ ├── leaflet.markercluster.js │ │ ├── leaflet.markercluster.layersupport-src.js │ │ ├── leaflet.markercluster.layersupport-src.js.map │ │ ├── leaflet.markercluster.layersupport.js │ │ └── package.json │ │ ├── Proj4Leaflet │ │ ├── proj4.min.js │ │ └── proj4leaflet.js │ │ ├── leaflet-locationfilter │ │ ├── img │ │ │ ├── filter-icon.png │ │ │ ├── move-handle.png │ │ │ └── resize-handle.png │ │ ├── locationfilter-bindings.js │ │ ├── locationfilter.css │ │ └── locationfilter.js │ │ └── leaflet-providers-plugin │ │ └── leaflet-providers-plugin.js └── legacy │ ├── examples │ ├── choropleth │ │ ├── DESCRIPTION │ │ ├── Rplots.pdf │ │ ├── global.R │ │ ├── server.R │ │ ├── shinyapps │ │ │ └── jcheng │ │ │ │ └── choropleth3.dcf │ │ └── ui.R │ ├── geojson │ │ ├── server.R │ │ └── ui.R │ └── population │ │ ├── server.R │ │ ├── ui.R │ │ └── www │ │ └── styles.css │ └── www │ ├── binding.js │ ├── images │ ├── layers-2x.png │ ├── layers.png │ ├── marker-icon-2x.png │ ├── marker-icon.png │ └── marker-shadow.png │ ├── leaflet-src.js │ ├── leaflet.css │ └── leaflet.js ├── javascript ├── src │ ├── cluster-layer-store.js │ ├── control-store.js │ ├── crs_utils.js │ ├── dataframe.js │ ├── fixup-default-icon.js │ ├── fixup-default-tooltip.js │ ├── fixup-url-protocol.js │ ├── global │ │ ├── htmlwidgets.js │ │ ├── jquery.js │ │ ├── leaflet.js │ │ ├── proj4leaflet.js │ │ └── shiny.js │ ├── index.js │ ├── layer-manager.js │ ├── methods.js │ ├── mipmapper.js │ └── util.js └── tests │ └── test-dataframe.js ├── leaflet.Rproj ├── man-roxygen └── data-getMapData.R ├── man ├── aaa-test-viztest.Rd ├── addAwesomeMarkers.Rd ├── addGraticule.Rd ├── addLayersControl.Rd ├── addLegend.Rd ├── addMapPane.Rd ├── addMeasure.Rd ├── addMiniMap.Rd ├── addProviderTiles.Rd ├── addRasterImage.Rd ├── addRasterLegend.Rd ├── addScaleBar.Rd ├── addSimpleGraticule.Rd ├── addTerminator.Rd ├── atlStorms2005.Rd ├── awesomeIconList.Rd ├── awesomeIcons.Rd ├── breweries91.Rd ├── colorNumeric.Rd ├── deprecated.Rd ├── derivePoints.Rd ├── dispatch.Rd ├── easyButton.Rd ├── evalFormula.Rd ├── expandLimits.Rd ├── expandLimitsBbox.Rd ├── filterNULL.Rd ├── gadmCHE.Rd ├── getMapData.Rd ├── groupOptions.Rd ├── iconList.Rd ├── icons.Rd ├── leaflet-package.Rd ├── leaflet.Rd ├── leafletDependencies.Rd ├── leafletProxy.Rd ├── leafletSizingPolicy.Rd ├── makeAwesomeIcon.Rd ├── makeIcon.Rd ├── map-layers.Rd ├── map-methods.Rd ├── map-options.Rd ├── map-shiny.Rd ├── mapOptions.Rd ├── previewColors.Rd ├── providers.Rd ├── reexports.Rd ├── remove.Rd ├── safeLabel.Rd ├── showGroup.Rd └── validateCoords.Rd ├── package.json ├── pkgdown ├── _pkgdown.yml └── assets │ ├── json │ ├── countries.geojson │ ├── nycounties.geojson │ ├── us-10m.json │ └── us-states.geojson │ └── nc │ └── oisst-sst.nc ├── revdep ├── .gitignore ├── README.md ├── cran.md ├── failures.md └── problems.md ├── scripts ├── crosstalk_example.R ├── git_clean.R ├── raster.R ├── scratch.Rmd ├── viztest.R └── viztest_testing_notes.md ├── tests ├── testthat.R └── testthat │ ├── _snaps │ ├── normalize-2.md │ └── remote.md │ ├── helper.R │ ├── test-colors.R │ ├── test-evalFormula.R │ ├── test-icon.R │ ├── test-legend.R │ ├── test-measure.R │ ├── test-normalize-2.R │ ├── test-normalize-3.R │ ├── test-normalize.R │ ├── test-raster.R │ ├── test-remote.R │ └── test-tiles.R ├── vignettes ├── .gitignore └── articles │ ├── .gitignore │ ├── basemaps.Rmd │ ├── choropleths.Rmd │ ├── colors.Rmd │ ├── extending.Rmd │ ├── images │ ├── shiny1.png │ ├── shiny2.png │ └── shiny3.png │ ├── js │ └── Bing.min.js │ ├── json.Rmd │ ├── leaflet.Rmd │ ├── legends.Rmd │ ├── markers.Rmd │ ├── morefeatures.Rmd │ ├── nc │ └── oisst-sst.nc │ ├── popups.Rmd │ ├── projections.Rmd │ ├── raster.Rmd │ ├── shapes.Rmd │ ├── shiny.Rmd │ ├── showhide.Rmd │ ├── shp │ ├── cb_2013_us_state_20m.dbf │ ├── cb_2013_us_state_20m.prj │ ├── cb_2013_us_state_20m.shp │ ├── cb_2013_us_state_20m.shp.iso.xml │ ├── cb_2013_us_state_20m.shp.xml │ ├── cb_2013_us_state_20m.shx │ └── state_20m.ea.iso.xml │ └── widget.Rmd └── yarn.lock /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.bowerrc: -------------------------------------------------------------------------------- 1 | {"directory": "inst/htmlwidgets/lib"} -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2025 2 | COPYRIGHT HOLDER: leaflet authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LICENSE.note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/LICENSE.note -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/colors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/colors.R -------------------------------------------------------------------------------- /R/controls.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/controls.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/data.R -------------------------------------------------------------------------------- /R/dependencies.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/dependencies.R -------------------------------------------------------------------------------- /R/layers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/layers.R -------------------------------------------------------------------------------- /R/leaflet-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/leaflet-package.R -------------------------------------------------------------------------------- /R/leaflet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/leaflet.R -------------------------------------------------------------------------------- /R/legacy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/legacy.R -------------------------------------------------------------------------------- /R/legend.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/legend.R -------------------------------------------------------------------------------- /R/mapPane.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/mapPane.R -------------------------------------------------------------------------------- /R/methods.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/methods.R -------------------------------------------------------------------------------- /R/normalize-SharedData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/normalize-SharedData.R -------------------------------------------------------------------------------- /R/normalize-map.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/normalize-map.R -------------------------------------------------------------------------------- /R/normalize-sf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/normalize-sf.R -------------------------------------------------------------------------------- /R/normalize-sp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/normalize-sp.R -------------------------------------------------------------------------------- /R/normalize-terra.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/normalize-terra.R -------------------------------------------------------------------------------- /R/normalize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/normalize.R -------------------------------------------------------------------------------- /R/plugin-awesomeMarkers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/plugin-awesomeMarkers.R -------------------------------------------------------------------------------- /R/plugin-easybutton.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/plugin-easybutton.R -------------------------------------------------------------------------------- /R/plugin-graticule.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/plugin-graticule.R -------------------------------------------------------------------------------- /R/plugin-measure.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/plugin-measure.R -------------------------------------------------------------------------------- /R/plugin-minimap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/plugin-minimap.R -------------------------------------------------------------------------------- /R/plugin-omnivore.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/plugin-omnivore.R -------------------------------------------------------------------------------- /R/plugin-providers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/plugin-providers.R -------------------------------------------------------------------------------- /R/plugin-simplegraticule.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/plugin-simplegraticule.R -------------------------------------------------------------------------------- /R/plugin-terminator.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/plugin-terminator.R -------------------------------------------------------------------------------- /R/scalebar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/scalebar.R -------------------------------------------------------------------------------- /R/selection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/selection.R -------------------------------------------------------------------------------- /R/shiny.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/shiny.R -------------------------------------------------------------------------------- /R/staticimports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/staticimports.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/zzz.R -------------------------------------------------------------------------------- /R/zzz_viztest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/R/zzz_viztest.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data-raw/atlStorms2005.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/data-raw/atlStorms2005.R -------------------------------------------------------------------------------- /data-raw/breweries91.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/data-raw/breweries91.R -------------------------------------------------------------------------------- /data-raw/gadmCHE.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/data-raw/gadmCHE.R -------------------------------------------------------------------------------- /data/atlStorms2005.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/data/atlStorms2005.rda -------------------------------------------------------------------------------- /data/breweries91.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/data/breweries91.rda -------------------------------------------------------------------------------- /data/gadmCHE.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/data/gadmCHE.rda -------------------------------------------------------------------------------- /inst/csv/uspop2000.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/csv/uspop2000.csv -------------------------------------------------------------------------------- /inst/examples/Historic_sites_and_monuments_point.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/examples/Historic_sites_and_monuments_point.kml -------------------------------------------------------------------------------- /inst/examples/Seamask_medium_res_polygon.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/examples/Seamask_medium_res_polygon.kml -------------------------------------------------------------------------------- /inst/examples/awesomeMarkers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/examples/awesomeMarkers.R -------------------------------------------------------------------------------- /inst/examples/easyButton.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/examples/easyButton.R -------------------------------------------------------------------------------- /inst/examples/emptyData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/examples/emptyData.R -------------------------------------------------------------------------------- /inst/examples/geojson.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/examples/geojson.R -------------------------------------------------------------------------------- /inst/examples/graticule.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/examples/graticule.R -------------------------------------------------------------------------------- /inst/examples/groupOptions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/examples/groupOptions.R -------------------------------------------------------------------------------- /inst/examples/highlight-polygons.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/examples/highlight-polygons.R -------------------------------------------------------------------------------- /inst/examples/icons.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/examples/icons.R -------------------------------------------------------------------------------- /inst/examples/labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/examples/labels.R -------------------------------------------------------------------------------- /inst/examples/leaflet-measure.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/examples/leaflet-measure.R -------------------------------------------------------------------------------- /inst/examples/leaflet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/examples/leaflet.R -------------------------------------------------------------------------------- /inst/examples/legend.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/examples/legend.R -------------------------------------------------------------------------------- /inst/examples/marker-clustering.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/examples/marker-clustering.R -------------------------------------------------------------------------------- /inst/examples/minimap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/examples/minimap.R -------------------------------------------------------------------------------- /inst/examples/normalize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/examples/normalize.R -------------------------------------------------------------------------------- /inst/examples/polygon-colors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/examples/polygon-colors.R -------------------------------------------------------------------------------- /inst/examples/proj4Leaflet-PolarProjections.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/examples/proj4Leaflet-PolarProjections.R -------------------------------------------------------------------------------- /inst/examples/proj4Leaflet-TMS.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/examples/proj4Leaflet-TMS.R -------------------------------------------------------------------------------- /inst/examples/proj4Leaflet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/examples/proj4Leaflet.R -------------------------------------------------------------------------------- /inst/examples/providers-digitalglobe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/examples/providers-digitalglobe.R -------------------------------------------------------------------------------- /inst/examples/providers-shiny.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/examples/providers-shiny.R -------------------------------------------------------------------------------- /inst/examples/providers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/examples/providers.R -------------------------------------------------------------------------------- /inst/examples/shiny-markercluster.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/examples/shiny-markercluster.R -------------------------------------------------------------------------------- /inst/examples/shiny.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/examples/shiny.R -------------------------------------------------------------------------------- /inst/examples/simpleGraticule.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/examples/simpleGraticule.R -------------------------------------------------------------------------------- /inst/examples/terminator.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/examples/terminator.R -------------------------------------------------------------------------------- /inst/examples/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/examples/test.json -------------------------------------------------------------------------------- /inst/htmlwidgets/assets/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/assets/leaflet.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet-measure/images/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/leaflet-measure/images/cancel.png -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet-measure/images/cancel_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/leaflet-measure/images/cancel_@2X.png -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet-measure/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/leaflet-measure/images/check.png -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet-measure/images/check_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/leaflet-measure/images/check_@2X.png -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet-measure/images/focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/leaflet-measure/images/focus.png -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet-measure/images/focus_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/leaflet-measure/images/focus_@2X.png -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet-measure/images/rulers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/leaflet-measure/images/rulers.png -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet-measure/images/rulers_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/leaflet-measure/images/rulers_@2X.png -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet-measure/images/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/leaflet-measure/images/start.png -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet-measure/images/start_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/leaflet-measure/images/start_@2X.png -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet-measure/images/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/leaflet-measure/images/trash.png -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet-measure/images/trash_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/leaflet-measure/images/trash_@2X.png -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet-measure/leaflet-measure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/leaflet-measure/leaflet-measure.css -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet-measure/leaflet-measure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/leaflet-measure/leaflet-measure.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet-measure/leaflet-measure.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/leaflet-measure/leaflet-measure.min.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet-omnivore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/leaflet-omnivore/LICENSE -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet-omnivore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/leaflet-omnivore/index.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet-omnivore/leaflet-omnivore.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/leaflet-omnivore/leaflet-omnivore.min.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet-omnivore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/leaflet-omnivore/package.json -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/leaflet/images/layers-2x.png -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/leaflet/images/layers.png -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/leaflet/images/marker-icon-2x.png -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/leaflet/images/marker-icon.png -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/leaflet/images/marker-shadow.png -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet/leaflet-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/leaflet/leaflet-src.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet/leaflet-src.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/leaflet/leaflet-src.js.map -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/leaflet/leaflet.css -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/leaflet/leaflet.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet/leaflet.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/leaflet/leaflet.js.map -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leafletfix/leafletfix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/leafletfix/leafletfix.css -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/rstudio_leaflet/images/1px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/rstudio_leaflet/images/1px.png -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/rstudio_leaflet/rstudio_leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/lib/rstudio_leaflet/rstudio_leaflet.css -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet-MiniMap/Control.MiniMap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet-MiniMap/Control.MiniMap.css -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet-MiniMap/Control.MiniMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet-MiniMap/Control.MiniMap.js -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet-MiniMap/Control.MiniMap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet-MiniMap/Control.MiniMap.min.css -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet-MiniMap/Control.MiniMap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet-MiniMap/Control.MiniMap.min.js -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet-MiniMap/Minimap-binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet-MiniMap/Minimap-binding.js -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet-MiniMap/images/toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet-MiniMap/images/toggle.png -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet-MiniMap/images/toggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet-MiniMap/images/toggle.svg -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.EasyButton/EasyButton-binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.EasyButton/EasyButton-binding.js -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.EasyButton/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.EasyButton/LICENSE -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.EasyButton/easy-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.EasyButton/easy-button.css -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.EasyButton/easy-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.EasyButton/easy-button.js -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.Graticule/Graticule-binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.Graticule/Graticule-binding.js -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.Graticule/L.Graticule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.Graticule/L.Graticule.js -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.Graticule/Leaflet.Graticule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.Graticule/Leaflet.Graticule.js -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.SimpleGraticule/L.SimpleGraticule.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.SimpleGraticule/L.SimpleGraticule.css -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.SimpleGraticule/L.SimpleGraticule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.SimpleGraticule/L.SimpleGraticule.js -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.SimpleGraticule/SimpleGraticule-binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.SimpleGraticule/SimpleGraticule-binding.js -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.Terminator/L.Terminator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.Terminator/L.Terminator.js -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.Terminator/Terminator-binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.Terminator/Terminator-binding.js -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.awesome-markers/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.awesome-markers/bootstrap-theme.min.css -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.awesome-markers/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.awesome-markers/bootstrap.min.css -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.awesome-markers/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.awesome-markers/bootstrap.min.js -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.awesome-markers/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.awesome-markers/font-awesome.min.css -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.awesome-markers/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.awesome-markers/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.awesome-markers/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.awesome-markers/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.awesome-markers/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.awesome-markers/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.awesome-markers/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.awesome-markers/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.awesome-markers/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.awesome-markers/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.awesome-markers/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.awesome-markers/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.awesome-markers/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.awesome-markers/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.awesome-markers/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.awesome-markers/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.awesome-markers/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.awesome-markers/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.awesome-markers/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.awesome-markers/fonts/ionicons.eot -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.awesome-markers/fonts/ionicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.awesome-markers/fonts/ionicons.svg -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.awesome-markers/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.awesome-markers/fonts/ionicons.ttf -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.awesome-markers/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.awesome-markers/fonts/ionicons.woff -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.awesome-markers/images/markers-matte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.awesome-markers/images/markers-matte.png -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.awesome-markers/images/markers-matte@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.awesome-markers/images/markers-matte@2x.png -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.awesome-markers/images/markers-plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.awesome-markers/images/markers-plain.png -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.awesome-markers/images/markers-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.awesome-markers/images/markers-shadow.png -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.awesome-markers/images/markers-shadow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.awesome-markers/images/markers-shadow@2x.png -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.awesome-markers/images/markers-soft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.awesome-markers/images/markers-soft.png -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.awesome-markers/images/markers-soft@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.awesome-markers/images/markers-soft@2x.png -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.awesome-markers/ionicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.awesome-markers/ionicons.min.css -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.awesome-markers/leaflet.awesome-markers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.awesome-markers/leaflet.awesome-markers.css -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.awesome-markers/leaflet.awesome-markers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.awesome-markers/leaflet.awesome-markers.js -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.awesome-markers/leaflet.awesome-markers.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.awesome-markers/leaflet.awesome-markers.min.js -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.markercluster/MIT-LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.markercluster/MIT-LICENCE.txt -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.markercluster/MarkerCluster.Default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.markercluster/MarkerCluster.Default.css -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.markercluster/MarkerCluster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.markercluster/MarkerCluster.css -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.markercluster/leaflet.markercluster-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.markercluster/leaflet.markercluster-src.js -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.markercluster/leaflet.markercluster.freezable-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.markercluster/leaflet.markercluster.freezable-src.js -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.markercluster/leaflet.markercluster.freezable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.markercluster/leaflet.markercluster.freezable.js -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.markercluster/leaflet.markercluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.markercluster/leaflet.markercluster.js -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.markercluster/leaflet.markercluster.layersupport-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.markercluster/leaflet.markercluster.layersupport-src.js -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.markercluster/leaflet.markercluster.layersupport-src.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.markercluster/leaflet.markercluster.layersupport-src.js.map -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.markercluster/leaflet.markercluster.layersupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.markercluster/leaflet.markercluster.layersupport.js -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Leaflet.markercluster/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Leaflet.markercluster/package.json -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Proj4Leaflet/proj4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Proj4Leaflet/proj4.min.js -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/Proj4Leaflet/proj4leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/Proj4Leaflet/proj4leaflet.js -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/leaflet-locationfilter/img/filter-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/leaflet-locationfilter/img/filter-icon.png -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/leaflet-locationfilter/img/move-handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/leaflet-locationfilter/img/move-handle.png -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/leaflet-locationfilter/img/resize-handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/leaflet-locationfilter/img/resize-handle.png -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/leaflet-locationfilter/locationfilter-bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/leaflet-locationfilter/locationfilter-bindings.js -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/leaflet-locationfilter/locationfilter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/leaflet-locationfilter/locationfilter.css -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/leaflet-locationfilter/locationfilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/leaflet-locationfilter/locationfilter.js -------------------------------------------------------------------------------- /inst/htmlwidgets/plugins/leaflet-providers-plugin/leaflet-providers-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/htmlwidgets/plugins/leaflet-providers-plugin/leaflet-providers-plugin.js -------------------------------------------------------------------------------- /inst/legacy/examples/choropleth/DESCRIPTION: -------------------------------------------------------------------------------- 1 | Title: Choropleths with Shiny and Leaflet 2 | DisplayMode: Showcase -------------------------------------------------------------------------------- /inst/legacy/examples/choropleth/Rplots.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/legacy/examples/choropleth/Rplots.pdf -------------------------------------------------------------------------------- /inst/legacy/examples/choropleth/global.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/legacy/examples/choropleth/global.R -------------------------------------------------------------------------------- /inst/legacy/examples/choropleth/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/legacy/examples/choropleth/server.R -------------------------------------------------------------------------------- /inst/legacy/examples/choropleth/shinyapps/jcheng/choropleth3.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/legacy/examples/choropleth/shinyapps/jcheng/choropleth3.dcf -------------------------------------------------------------------------------- /inst/legacy/examples/choropleth/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/legacy/examples/choropleth/ui.R -------------------------------------------------------------------------------- /inst/legacy/examples/geojson/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/legacy/examples/geojson/server.R -------------------------------------------------------------------------------- /inst/legacy/examples/geojson/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/legacy/examples/geojson/ui.R -------------------------------------------------------------------------------- /inst/legacy/examples/population/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/legacy/examples/population/server.R -------------------------------------------------------------------------------- /inst/legacy/examples/population/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/legacy/examples/population/ui.R -------------------------------------------------------------------------------- /inst/legacy/examples/population/www/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/legacy/examples/population/www/styles.css -------------------------------------------------------------------------------- /inst/legacy/www/binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/legacy/www/binding.js -------------------------------------------------------------------------------- /inst/legacy/www/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/legacy/www/images/layers-2x.png -------------------------------------------------------------------------------- /inst/legacy/www/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/legacy/www/images/layers.png -------------------------------------------------------------------------------- /inst/legacy/www/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/legacy/www/images/marker-icon-2x.png -------------------------------------------------------------------------------- /inst/legacy/www/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/legacy/www/images/marker-icon.png -------------------------------------------------------------------------------- /inst/legacy/www/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/legacy/www/images/marker-shadow.png -------------------------------------------------------------------------------- /inst/legacy/www/leaflet-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/legacy/www/leaflet-src.js -------------------------------------------------------------------------------- /inst/legacy/www/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/legacy/www/leaflet.css -------------------------------------------------------------------------------- /inst/legacy/www/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/inst/legacy/www/leaflet.js -------------------------------------------------------------------------------- /javascript/src/cluster-layer-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/javascript/src/cluster-layer-store.js -------------------------------------------------------------------------------- /javascript/src/control-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/javascript/src/control-store.js -------------------------------------------------------------------------------- /javascript/src/crs_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/javascript/src/crs_utils.js -------------------------------------------------------------------------------- /javascript/src/dataframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/javascript/src/dataframe.js -------------------------------------------------------------------------------- /javascript/src/fixup-default-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/javascript/src/fixup-default-icon.js -------------------------------------------------------------------------------- /javascript/src/fixup-default-tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/javascript/src/fixup-default-tooltip.js -------------------------------------------------------------------------------- /javascript/src/fixup-url-protocol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/javascript/src/fixup-url-protocol.js -------------------------------------------------------------------------------- /javascript/src/global/htmlwidgets.js: -------------------------------------------------------------------------------- 1 | export default global.HTMLWidgets; 2 | -------------------------------------------------------------------------------- /javascript/src/global/jquery.js: -------------------------------------------------------------------------------- 1 | export default global.jQuery; 2 | -------------------------------------------------------------------------------- /javascript/src/global/leaflet.js: -------------------------------------------------------------------------------- 1 | export default global.L; 2 | -------------------------------------------------------------------------------- /javascript/src/global/proj4leaflet.js: -------------------------------------------------------------------------------- 1 | export default global.L.Proj; 2 | -------------------------------------------------------------------------------- /javascript/src/global/shiny.js: -------------------------------------------------------------------------------- 1 | export default global.Shiny; 2 | -------------------------------------------------------------------------------- /javascript/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/javascript/src/index.js -------------------------------------------------------------------------------- /javascript/src/layer-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/javascript/src/layer-manager.js -------------------------------------------------------------------------------- /javascript/src/methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/javascript/src/methods.js -------------------------------------------------------------------------------- /javascript/src/mipmapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/javascript/src/mipmapper.js -------------------------------------------------------------------------------- /javascript/src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/javascript/src/util.js -------------------------------------------------------------------------------- /javascript/tests/test-dataframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/javascript/tests/test-dataframe.js -------------------------------------------------------------------------------- /leaflet.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/leaflet.Rproj -------------------------------------------------------------------------------- /man-roxygen/data-getMapData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man-roxygen/data-getMapData.R -------------------------------------------------------------------------------- /man/aaa-test-viztest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/aaa-test-viztest.Rd -------------------------------------------------------------------------------- /man/addAwesomeMarkers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/addAwesomeMarkers.Rd -------------------------------------------------------------------------------- /man/addGraticule.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/addGraticule.Rd -------------------------------------------------------------------------------- /man/addLayersControl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/addLayersControl.Rd -------------------------------------------------------------------------------- /man/addLegend.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/addLegend.Rd -------------------------------------------------------------------------------- /man/addMapPane.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/addMapPane.Rd -------------------------------------------------------------------------------- /man/addMeasure.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/addMeasure.Rd -------------------------------------------------------------------------------- /man/addMiniMap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/addMiniMap.Rd -------------------------------------------------------------------------------- /man/addProviderTiles.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/addProviderTiles.Rd -------------------------------------------------------------------------------- /man/addRasterImage.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/addRasterImage.Rd -------------------------------------------------------------------------------- /man/addRasterLegend.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/addRasterLegend.Rd -------------------------------------------------------------------------------- /man/addScaleBar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/addScaleBar.Rd -------------------------------------------------------------------------------- /man/addSimpleGraticule.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/addSimpleGraticule.Rd -------------------------------------------------------------------------------- /man/addTerminator.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/addTerminator.Rd -------------------------------------------------------------------------------- /man/atlStorms2005.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/atlStorms2005.Rd -------------------------------------------------------------------------------- /man/awesomeIconList.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/awesomeIconList.Rd -------------------------------------------------------------------------------- /man/awesomeIcons.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/awesomeIcons.Rd -------------------------------------------------------------------------------- /man/breweries91.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/breweries91.Rd -------------------------------------------------------------------------------- /man/colorNumeric.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/colorNumeric.Rd -------------------------------------------------------------------------------- /man/deprecated.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/deprecated.Rd -------------------------------------------------------------------------------- /man/derivePoints.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/derivePoints.Rd -------------------------------------------------------------------------------- /man/dispatch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/dispatch.Rd -------------------------------------------------------------------------------- /man/easyButton.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/easyButton.Rd -------------------------------------------------------------------------------- /man/evalFormula.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/evalFormula.Rd -------------------------------------------------------------------------------- /man/expandLimits.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/expandLimits.Rd -------------------------------------------------------------------------------- /man/expandLimitsBbox.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/expandLimitsBbox.Rd -------------------------------------------------------------------------------- /man/filterNULL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/filterNULL.Rd -------------------------------------------------------------------------------- /man/gadmCHE.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/gadmCHE.Rd -------------------------------------------------------------------------------- /man/getMapData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/getMapData.Rd -------------------------------------------------------------------------------- /man/groupOptions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/groupOptions.Rd -------------------------------------------------------------------------------- /man/iconList.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/iconList.Rd -------------------------------------------------------------------------------- /man/icons.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/icons.Rd -------------------------------------------------------------------------------- /man/leaflet-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/leaflet-package.Rd -------------------------------------------------------------------------------- /man/leaflet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/leaflet.Rd -------------------------------------------------------------------------------- /man/leafletDependencies.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/leafletDependencies.Rd -------------------------------------------------------------------------------- /man/leafletProxy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/leafletProxy.Rd -------------------------------------------------------------------------------- /man/leafletSizingPolicy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/leafletSizingPolicy.Rd -------------------------------------------------------------------------------- /man/makeAwesomeIcon.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/makeAwesomeIcon.Rd -------------------------------------------------------------------------------- /man/makeIcon.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/makeIcon.Rd -------------------------------------------------------------------------------- /man/map-layers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/map-layers.Rd -------------------------------------------------------------------------------- /man/map-methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/map-methods.Rd -------------------------------------------------------------------------------- /man/map-options.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/map-options.Rd -------------------------------------------------------------------------------- /man/map-shiny.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/map-shiny.Rd -------------------------------------------------------------------------------- /man/mapOptions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/mapOptions.Rd -------------------------------------------------------------------------------- /man/previewColors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/previewColors.Rd -------------------------------------------------------------------------------- /man/providers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/providers.Rd -------------------------------------------------------------------------------- /man/reexports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/reexports.Rd -------------------------------------------------------------------------------- /man/remove.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/remove.Rd -------------------------------------------------------------------------------- /man/safeLabel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/safeLabel.Rd -------------------------------------------------------------------------------- /man/showGroup.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/showGroup.Rd -------------------------------------------------------------------------------- /man/validateCoords.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/man/validateCoords.Rd -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/package.json -------------------------------------------------------------------------------- /pkgdown/_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/pkgdown/_pkgdown.yml -------------------------------------------------------------------------------- /pkgdown/assets/json/countries.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/pkgdown/assets/json/countries.geojson -------------------------------------------------------------------------------- /pkgdown/assets/json/nycounties.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/pkgdown/assets/json/nycounties.geojson -------------------------------------------------------------------------------- /pkgdown/assets/json/us-10m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/pkgdown/assets/json/us-10m.json -------------------------------------------------------------------------------- /pkgdown/assets/json/us-states.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/pkgdown/assets/json/us-states.geojson -------------------------------------------------------------------------------- /pkgdown/assets/nc/oisst-sst.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/pkgdown/assets/nc/oisst-sst.nc -------------------------------------------------------------------------------- /revdep/.gitignore: -------------------------------------------------------------------------------- 1 | checks 2 | library 3 | *.noindex 4 | data.sqlite 5 | *.html 6 | -------------------------------------------------------------------------------- /revdep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/revdep/README.md -------------------------------------------------------------------------------- /revdep/cran.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/revdep/cran.md -------------------------------------------------------------------------------- /revdep/failures.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /revdep/problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/revdep/problems.md -------------------------------------------------------------------------------- /scripts/crosstalk_example.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/scripts/crosstalk_example.R -------------------------------------------------------------------------------- /scripts/git_clean.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/scripts/git_clean.R -------------------------------------------------------------------------------- /scripts/raster.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/scripts/raster.R -------------------------------------------------------------------------------- /scripts/scratch.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/scripts/scratch.Rmd -------------------------------------------------------------------------------- /scripts/viztest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/scripts/viztest.R -------------------------------------------------------------------------------- /scripts/viztest_testing_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/scripts/viztest_testing_notes.md -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/normalize-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/tests/testthat/_snaps/normalize-2.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/remote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/tests/testthat/_snaps/remote.md -------------------------------------------------------------------------------- /tests/testthat/helper.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/tests/testthat/helper.R -------------------------------------------------------------------------------- /tests/testthat/test-colors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/tests/testthat/test-colors.R -------------------------------------------------------------------------------- /tests/testthat/test-evalFormula.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/tests/testthat/test-evalFormula.R -------------------------------------------------------------------------------- /tests/testthat/test-icon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/tests/testthat/test-icon.R -------------------------------------------------------------------------------- /tests/testthat/test-legend.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/tests/testthat/test-legend.R -------------------------------------------------------------------------------- /tests/testthat/test-measure.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/tests/testthat/test-measure.R -------------------------------------------------------------------------------- /tests/testthat/test-normalize-2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/tests/testthat/test-normalize-2.R -------------------------------------------------------------------------------- /tests/testthat/test-normalize-3.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/tests/testthat/test-normalize-3.R -------------------------------------------------------------------------------- /tests/testthat/test-normalize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/tests/testthat/test-normalize.R -------------------------------------------------------------------------------- /tests/testthat/test-raster.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/tests/testthat/test-raster.R -------------------------------------------------------------------------------- /tests/testthat/test-remote.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/tests/testthat/test-remote.R -------------------------------------------------------------------------------- /tests/testthat/test-tiles.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/tests/testthat/test-tiles.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/articles/.gitignore: -------------------------------------------------------------------------------- 1 | /.quarto/ 2 | -------------------------------------------------------------------------------- /vignettes/articles/basemaps.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/vignettes/articles/basemaps.Rmd -------------------------------------------------------------------------------- /vignettes/articles/choropleths.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/vignettes/articles/choropleths.Rmd -------------------------------------------------------------------------------- /vignettes/articles/colors.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/vignettes/articles/colors.Rmd -------------------------------------------------------------------------------- /vignettes/articles/extending.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/vignettes/articles/extending.Rmd -------------------------------------------------------------------------------- /vignettes/articles/images/shiny1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/vignettes/articles/images/shiny1.png -------------------------------------------------------------------------------- /vignettes/articles/images/shiny2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/vignettes/articles/images/shiny2.png -------------------------------------------------------------------------------- /vignettes/articles/images/shiny3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/vignettes/articles/images/shiny3.png -------------------------------------------------------------------------------- /vignettes/articles/js/Bing.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/vignettes/articles/js/Bing.min.js -------------------------------------------------------------------------------- /vignettes/articles/json.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/vignettes/articles/json.Rmd -------------------------------------------------------------------------------- /vignettes/articles/leaflet.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/vignettes/articles/leaflet.Rmd -------------------------------------------------------------------------------- /vignettes/articles/legends.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/vignettes/articles/legends.Rmd -------------------------------------------------------------------------------- /vignettes/articles/markers.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/vignettes/articles/markers.Rmd -------------------------------------------------------------------------------- /vignettes/articles/morefeatures.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/vignettes/articles/morefeatures.Rmd -------------------------------------------------------------------------------- /vignettes/articles/nc/oisst-sst.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/vignettes/articles/nc/oisst-sst.nc -------------------------------------------------------------------------------- /vignettes/articles/popups.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/vignettes/articles/popups.Rmd -------------------------------------------------------------------------------- /vignettes/articles/projections.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/vignettes/articles/projections.Rmd -------------------------------------------------------------------------------- /vignettes/articles/raster.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/vignettes/articles/raster.Rmd -------------------------------------------------------------------------------- /vignettes/articles/shapes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/vignettes/articles/shapes.Rmd -------------------------------------------------------------------------------- /vignettes/articles/shiny.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/vignettes/articles/shiny.Rmd -------------------------------------------------------------------------------- /vignettes/articles/showhide.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/vignettes/articles/showhide.Rmd -------------------------------------------------------------------------------- /vignettes/articles/shp/cb_2013_us_state_20m.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/vignettes/articles/shp/cb_2013_us_state_20m.dbf -------------------------------------------------------------------------------- /vignettes/articles/shp/cb_2013_us_state_20m.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/vignettes/articles/shp/cb_2013_us_state_20m.prj -------------------------------------------------------------------------------- /vignettes/articles/shp/cb_2013_us_state_20m.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/vignettes/articles/shp/cb_2013_us_state_20m.shp -------------------------------------------------------------------------------- /vignettes/articles/shp/cb_2013_us_state_20m.shp.iso.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/vignettes/articles/shp/cb_2013_us_state_20m.shp.iso.xml -------------------------------------------------------------------------------- /vignettes/articles/shp/cb_2013_us_state_20m.shp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/vignettes/articles/shp/cb_2013_us_state_20m.shp.xml -------------------------------------------------------------------------------- /vignettes/articles/shp/cb_2013_us_state_20m.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/vignettes/articles/shp/cb_2013_us_state_20m.shx -------------------------------------------------------------------------------- /vignettes/articles/shp/state_20m.ea.iso.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/vignettes/articles/shp/state_20m.ea.iso.xml -------------------------------------------------------------------------------- /vignettes/articles/widget.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/vignettes/articles/widget.Rmd -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/leaflet/HEAD/yarn.lock --------------------------------------------------------------------------------