├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── CONDUCT.md ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── addToolbar.R ├── addin.R ├── draw.R ├── edit.R ├── editAttributes.R ├── edit_map_return_sf.R ├── helpers.R ├── mapedit.R ├── mapview_extent.R ├── mapview_init.R ├── mapview_projection.R ├── merge.R ├── modules.R ├── playback.R ├── query.R └── select.R ├── README.Rmd ├── README.md ├── cran-comments.md ├── experiments ├── add_sf_to_df.R ├── crosstalk.R ├── crosstalk_shiny.R ├── draw_shiny_deleted.R ├── edit_map_draw_border.R ├── edit_map_return_sf_tests.R ├── experiment_split.R ├── flubber_playback.R ├── flubber_playback.RData ├── gadget_draw2.R ├── igraph_mapedit.r ├── mapedit_attribute_poc.R ├── merge_tests.R ├── randgeo_edit.R ├── select_crosstalk.R ├── select_shiny_crosstalk.R └── sf_leafletdraw_intersect.R ├── inst ├── examples │ ├── examples_edit.R │ ├── examples_leafpm.R │ ├── examples_select.R │ └── shiny_modules.R ├── posts │ ├── 2017-01-22_interactivity.Rmd │ ├── 2017-05-10_edit_sf.Rmd │ └── 2020-01-24_geoattributes.Rmd └── rstudio │ └── addins.dcf ├── man ├── addToolbar.Rd ├── createFeatures.Rd ├── drawFeatures.Rd ├── editAttributes.Rd ├── editFeatures.Rd ├── editMap.Rd ├── editMod.Rd ├── editModUI.Rd ├── mapedit-package.Rd ├── merge_add.Rd ├── merge_delete.Rd ├── merge_edit.Rd ├── pipe.Rd ├── playback.Rd ├── processOpts.Rd ├── selectFeatures.Rd ├── selectMap.Rd ├── selectMod.Rd └── selectModUI.Rd └── mapedit.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/.gitignore -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2025 2 | COPYRIGHT HOLDER: mapedit authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/addToolbar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/R/addToolbar.R -------------------------------------------------------------------------------- /R/addin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/R/addin.R -------------------------------------------------------------------------------- /R/draw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/R/draw.R -------------------------------------------------------------------------------- /R/edit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/R/edit.R -------------------------------------------------------------------------------- /R/editAttributes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/R/editAttributes.R -------------------------------------------------------------------------------- /R/edit_map_return_sf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/R/edit_map_return_sf.R -------------------------------------------------------------------------------- /R/helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/R/helpers.R -------------------------------------------------------------------------------- /R/mapedit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/R/mapedit.R -------------------------------------------------------------------------------- /R/mapview_extent.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/R/mapview_extent.R -------------------------------------------------------------------------------- /R/mapview_init.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/R/mapview_init.R -------------------------------------------------------------------------------- /R/mapview_projection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/R/mapview_projection.R -------------------------------------------------------------------------------- /R/merge.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/R/merge.R -------------------------------------------------------------------------------- /R/modules.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/R/modules.R -------------------------------------------------------------------------------- /R/playback.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/R/playback.R -------------------------------------------------------------------------------- /R/query.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/R/query.R -------------------------------------------------------------------------------- /R/select.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/R/select.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/cran-comments.md -------------------------------------------------------------------------------- /experiments/add_sf_to_df.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/experiments/add_sf_to_df.R -------------------------------------------------------------------------------- /experiments/crosstalk.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/experiments/crosstalk.R -------------------------------------------------------------------------------- /experiments/crosstalk_shiny.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/experiments/crosstalk_shiny.R -------------------------------------------------------------------------------- /experiments/draw_shiny_deleted.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/experiments/draw_shiny_deleted.R -------------------------------------------------------------------------------- /experiments/edit_map_draw_border.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/experiments/edit_map_draw_border.R -------------------------------------------------------------------------------- /experiments/edit_map_return_sf_tests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/experiments/edit_map_return_sf_tests.R -------------------------------------------------------------------------------- /experiments/experiment_split.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/experiments/experiment_split.R -------------------------------------------------------------------------------- /experiments/flubber_playback.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/experiments/flubber_playback.R -------------------------------------------------------------------------------- /experiments/flubber_playback.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/experiments/flubber_playback.RData -------------------------------------------------------------------------------- /experiments/gadget_draw2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/experiments/gadget_draw2.R -------------------------------------------------------------------------------- /experiments/igraph_mapedit.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/experiments/igraph_mapedit.r -------------------------------------------------------------------------------- /experiments/mapedit_attribute_poc.R: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /experiments/merge_tests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/experiments/merge_tests.R -------------------------------------------------------------------------------- /experiments/randgeo_edit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/experiments/randgeo_edit.R -------------------------------------------------------------------------------- /experiments/select_crosstalk.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/experiments/select_crosstalk.R -------------------------------------------------------------------------------- /experiments/select_shiny_crosstalk.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/experiments/select_shiny_crosstalk.R -------------------------------------------------------------------------------- /experiments/sf_leafletdraw_intersect.R: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inst/examples/examples_edit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/inst/examples/examples_edit.R -------------------------------------------------------------------------------- /inst/examples/examples_leafpm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/inst/examples/examples_leafpm.R -------------------------------------------------------------------------------- /inst/examples/examples_select.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/inst/examples/examples_select.R -------------------------------------------------------------------------------- /inst/examples/shiny_modules.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/inst/examples/shiny_modules.R -------------------------------------------------------------------------------- /inst/posts/2017-01-22_interactivity.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/inst/posts/2017-01-22_interactivity.Rmd -------------------------------------------------------------------------------- /inst/posts/2017-05-10_edit_sf.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/inst/posts/2017-05-10_edit_sf.Rmd -------------------------------------------------------------------------------- /inst/posts/2020-01-24_geoattributes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/inst/posts/2020-01-24_geoattributes.Rmd -------------------------------------------------------------------------------- /inst/rstudio/addins.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/inst/rstudio/addins.dcf -------------------------------------------------------------------------------- /man/addToolbar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/man/addToolbar.Rd -------------------------------------------------------------------------------- /man/createFeatures.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/man/createFeatures.Rd -------------------------------------------------------------------------------- /man/drawFeatures.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/man/drawFeatures.Rd -------------------------------------------------------------------------------- /man/editAttributes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/man/editAttributes.Rd -------------------------------------------------------------------------------- /man/editFeatures.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/man/editFeatures.Rd -------------------------------------------------------------------------------- /man/editMap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/man/editMap.Rd -------------------------------------------------------------------------------- /man/editMod.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/man/editMod.Rd -------------------------------------------------------------------------------- /man/editModUI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/man/editModUI.Rd -------------------------------------------------------------------------------- /man/mapedit-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/man/mapedit-package.Rd -------------------------------------------------------------------------------- /man/merge_add.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/man/merge_add.Rd -------------------------------------------------------------------------------- /man/merge_delete.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/man/merge_delete.Rd -------------------------------------------------------------------------------- /man/merge_edit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/man/merge_edit.Rd -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /man/playback.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/man/playback.Rd -------------------------------------------------------------------------------- /man/processOpts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/man/processOpts.Rd -------------------------------------------------------------------------------- /man/selectFeatures.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/man/selectFeatures.Rd -------------------------------------------------------------------------------- /man/selectMap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/man/selectMap.Rd -------------------------------------------------------------------------------- /man/selectMod.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/man/selectMod.Rd -------------------------------------------------------------------------------- /man/selectModUI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/man/selectModUI.Rd -------------------------------------------------------------------------------- /mapedit.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/mapedit/HEAD/mapedit.Rproj --------------------------------------------------------------------------------