diff --git a/DESCRIPTION b/DESCRIPTION index 77e37b78f142ce1d82bb931f2e3cded179553ac6..14a1d752814ed9ebb8ca8fbde89af8e89191a787 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: webmap Title: Create Interactive Web Maps Using 'The National Map' Services -Version: 1.1.0 +Version: 1.1.1 Authors@R: c( person(given = c("Jason", "C."), family = "Fisher", @@ -47,4 +47,4 @@ Encoding: UTF-8 LazyData: true LazyDataCompression: xz Roxygen: list(markdown = TRUE) -RoxygenNote: 7.3.1 +RoxygenNote: 7.3.2 diff --git a/NEWS.md b/NEWS.md index e7ccdc7a73aba584c4285bc8730ed2b3e3c9f97f..9f382b4f2211b89c9017fa8a94efa91402d2d2f5 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,7 @@ +# webmap 1.1.1 + +* Fixed Rd files with `link{}` targets missing a package anchor by removing link. + # webmap 1.1.0 * Add [OpenStreetMap](https://www.openstreetmap.org/about) (OSM) tiled base map. diff --git a/R/add_home_button.R b/R/add_home_button.R index 14973d9ee8f98e6d015b8a67dd764370a167d4a0..33fdfa0d630a62d1f8add94682c387400419e0ba 100644 --- a/R/add_home_button.R +++ b/R/add_home_button.R @@ -2,7 +2,7 @@ #' #' Add a button to a [Leaflet](https://leafletjs.com/) map that zooms to the provided map extent. #' -#' @param map '[leaflet]'. +#' @param map 'leaflet'. #' Map widget object #' @param position 'character' string. #' Position of the button on the web map. @@ -23,10 +23,9 @@ #' @export #' #' @examples +#' extent <- c(-124.409, -114.131, 32.534, 42.009) # California #' make_map(maps = "Topo") |> -#' add_home_button( -#' extent = c(-124.409, -114.131, 32.534, 42.009) # California -#' ) +#' add_home_button(extent = extent) add_home_button <- function(map, extent = NULL, diff --git a/R/add_legend.R b/R/add_legend.R index 69513e2520a9cd5088b43e60dbae173c32569e5d..51f8a5ef3877c0e1e63463bcd727afba2f86a6d0 100644 --- a/R/add_legend.R +++ b/R/add_legend.R @@ -25,7 +25,7 @@ #' @export #' #' @examples -#' # define marker colors based on whether a city serves as a capital +#' # Define marker colors based on whether a city serves as a capital #' colors <- c( #' "Non-capital" = "green", #' "Capital" = "red" @@ -33,7 +33,7 @@ #' fill_colors <- colors[(us_cities$capital > 0) + 1L] |> #' as.character() #' -#' # print map with city circle markers and a map legend +#' # Print map with city circle markers and a map legend #' make_map(maps = "Topo") |> #' leaflet::addCircleMarkers( #' lng = ~lng, diff --git a/R/make_map.R b/R/make_map.R index 6998c5b29079bbcc207b4508451fe5842500f1d8..bd5134cf6325add031232507b78d7b2d211206e5 100644 --- a/R/make_map.R +++ b/R/make_map.R @@ -2,7 +2,7 @@ #' #' Create a [Leaflet](https://leafletjs.com/) map widget that includes base maps offered through #' [The National Map](https://www.usgs.gov/programs/national-geospatial-program/national-map) (TNM) -#' cached [service endpoints](https://apps.nationalmap.gov/services). +#' cached [service endpoints](https://apps.nationalmap.gov/services/). #' Information about the content of these base maps can be found within the #' [TNM Base Maps](https://apps.nationalmap.gov/help/3.0%20TNM%20Base%20Maps.htm) document. #' TNM content is limited to the United States and territories. diff --git a/README.Rmd b/README.Rmd index be19ca7e504fcb17bdf4ad0061de40bc8f6decbc..5a315e3bcf767b38e0fc29517b6a5bbbcb1c2dc3 100644 --- a/README.Rmd +++ b/README.Rmd @@ -1,8 +1,7 @@ --- output: md_document: - variant: markdown_github - md_extensions: -autolink_bare_uris+hard_line_breaks + variant: gfm --- # webmap <img src="man/figures/logo.svg" alt="webmap" align="right" width="152px" /> @@ -13,7 +12,11 @@ output: ## Description -The **webmap** package in [R] is a tool that leverages the JavaScript [Leaflet] library to create dynamic web maps. It includes base layers from [The National Map] (TNM), which provides access to geospatial information about the landscape of the United States and its territories. However, it is important to note that base layers outside these areas are unavailable at higher spatial scales. While [TNM services] are consistently [monitored] for reliability, their availability outside of standard government working hours cannot be guaranteed. The **webmap** package is designed to work in conjunction with the [Leaflet for R] package. Furthermore, it comes equipped with a variety of utility functions that enable you to enhance your web map with additional features. +The **webmap** package in [R] leverages the JavaScript [Leaflet] library to create dynamic web maps. It seamlessly integrates with base layers provided by [The National Map](TNM), offering essential geospatial information about the landscapes of the United States and its territories. + +Users should be aware that detailed base layers for areas outside the United States may not be available at higher spatial scales. While The National Map [services] are continuously [monitored] for reliability, availability outside of standard government working hours cannot be assured. + +Designed to complement the [Leaflet for R] package, the **webmap** package enhances mapping capabilities by providing a range of utility functions that allow users to enrich their web maps with additional features, resulting in engaging and effective visualizations. This makes the process of creating impactful web maps both straightforward and accessible for users of varying skill levels. ## Installation @@ -29,13 +32,11 @@ To install the package along with its dependencies, which are required to run ex install.packages("webmap", dependencies = TRUE) ``` -To install the development version of the package, you need to clone the repository and build from source, or run the following commands: +To install the development version of the package, you can either clone the repository and build it from source, or run the following commands. Make sure the **remotes** package for R is installed. ```r -if (!requireNamespace("remotes")) install.packages("remotes") remotes::install_gitlab( repo = "inl/webmap@develop", - auth_token = Sys.getenv("GITLAB_PAT"), host = "code.usgs.gov", dependencies = TRUE ) @@ -43,7 +44,7 @@ remotes::install_gitlab( After installing the package, you can use it in various contexts, including the R console, [R Markdown] documents, and [Shiny] applications. -## Basic Usage +## Usage To create the default web map and display it (the screenshot below showns the default web map), you can run the following commands: @@ -78,7 +79,8 @@ Jason C. Fisher (<jfisher@usgs.gov>) To cite **webmap** in publications, please use: ```{r "citation", echo=FALSE, results="asis"} -utils::readCitationFile("inst/CITATION") |> print(style = "textVersion") +utils::readCitationFile("inst/CITATION") |> + print(style = "textVersion") ``` ## Contributing @@ -105,11 +107,13 @@ Additional metadata about this publication, not found in other parts of the page ```{r "details", echo=FALSE, results="asis"} cite <- utils::readCitationFile("inst/CITATION") +href <- sprintf("https://code.usgs.gov/inl/mlms/-/tree/v%s", cite[[1]]$version) +version <- sprintf("<a href='%s'>%s</a>", href, cite[[1]]$version) x <- c( "Publication type" = "Formal R language package", "DOI" = cite[[1]]$doi, "Year published" = cite[[1]]$year, - "Version" = cite[[1]]$version, + "Version" = version, "IPDS" = "IP-155090" ) x <- sprintf(" <tr><th scope='row'>%s</th><td>%s</td></tr>", names(x), x) @@ -139,8 +143,7 @@ cat(s) [The National Map]: https://www.usgs.gov/programs/national-geospatial-program/national-map [R Markdown]: https://rmarkdown.rstudio.com/ [Shiny]: https://shiny.posit.co/ -[service endpoints]: https://apps.nationalmap.gov/services [leaflet-search library]: https://github.com/stefanocudini/leaflet-search [Leaflet.fullscreen library]: https://github.com/Leaflet/Leaflet.fullscreen -[TNM services]: https://apps.nationalmap.gov/services/ +[services]: https://apps.nationalmap.gov/services/ [monitored]: https://stats.uptimerobot.com/gxzRZFARLZ diff --git a/README.md b/README.md index 99d5dfc77dc12faab600d42395c0a6bd3b2eeaed..7ecb0b0ec5d3f107c9fc28761d62fa93e17ba53c 100644 --- a/README.md +++ b/README.md @@ -6,21 +6,26 @@ ## Description -The **webmap** package in [R](https://www.r-project.org/) is a tool that -leverages the JavaScript [Leaflet](https://leafletjs.com/) library to -create dynamic web maps. It includes base layers from [The National -Map](https://www.usgs.gov/programs/national-geospatial-program/national-map) -(TNM), which provides access to geospatial information about the -landscape of the United States and its territories. However, it is -important to note that base layers outside these areas are unavailable -at higher spatial scales. While [TNM -services](https://apps.nationalmap.gov/services/) are consistently -[monitored](https://stats.uptimerobot.com/gxzRZFARLZ) for reliability, -their availability outside of standard government working hours cannot -be guaranteed. The **webmap** package is designed to work in conjunction -with the [Leaflet for R](https://rstudio.github.io/leaflet/) package. -Furthermore, it comes equipped with a variety of utility functions that -enable you to enhance your web map with additional features. +The **webmap** package in [R](https://www.r-project.org/) leverages the +JavaScript [Leaflet](https://leafletjs.com/) library to create dynamic +web maps. It seamlessly integrates with base layers provided by [The +National Map](TNM), offering essential geospatial information about the +landscapes of the United States and its territories. + +Users should be aware that detailed base layers for areas outside the +United States may not be available at higher spatial scales. While The +National Map [services](https://apps.nationalmap.gov/services/) are +continuously [monitored](https://stats.uptimerobot.com/gxzRZFARLZ) for +reliability, availability outside of standard government working hours +cannot be assured. + +Designed to complement the [Leaflet for +R](https://rstudio.github.io/leaflet/) package, the **webmap** package +enhances mapping capabilities by providing a range of utility functions +that allow users to enrich their web maps with additional features, +resulting in engaging and effective visualizations. This makes the +process of creating impactful web maps both straightforward and +accessible for users of varying skill levels. ## Installation @@ -39,14 +44,13 @@ to run examples in the package help documentation, run: install.packages("webmap", dependencies = TRUE) ``` -To install the development version of the package, you need to clone the -repository and build from source, or run the following commands: +To install the development version of the package, you can either clone +the repository and build it from source, or run the following commands. +Make sure the **remotes** package for R is installed. ``` r -if (!requireNamespace("remotes")) install.packages("remotes") remotes::install_gitlab( repo = "inl/webmap@develop", - auth_token = Sys.getenv("GITLAB_PAT"), host = "code.usgs.gov", dependencies = TRUE ) @@ -56,7 +60,7 @@ After installing the package, you can use it in various contexts, including the R console, [R Markdown](https://rmarkdown.rstudio.com/) documents, and [Shiny](https://shiny.posit.co/) applications. -## Basic Usage +## Usage To create the default web map and display it (the screenshot below showns the default web map), you can run the following commands: @@ -80,12 +84,12 @@ help(package = "webmap") ## Authors -- Jason C. Fisher (ORCID iD - [0000-0001-9032-8912](https://orcid.org/0000-0001-9032-8912)) -- Stefano Cudini ([leaflet-search - library](https://github.com/stefanocudini/leaflet-search)) -- John Firebaugh ([Leaflet.fullscreen - library](https://github.com/Leaflet/Leaflet.fullscreen)) +- Jason C. Fisher (ORCID iD + [0000-0001-9032-8912](https://orcid.org/0000-0001-9032-8912)) +- Stefano Cudini ([leaflet-search + library](https://github.com/stefanocudini/leaflet-search)) +- John Firebaugh ([Leaflet.fullscreen + library](https://github.com/Leaflet/Leaflet.fullscreen)) ## Point of Contact @@ -199,7 +203,7 @@ Year published Version </th> <td> -1.0.0 +<a href='https://code.usgs.gov/inl/mlms/-/tree/v1.0.0'>1.0.0</a> </td> </tr> <tr> diff --git a/data/us_cities.rda b/data/us_cities.rda index 493f9e58e619de641d0ba78838b70f8bcf74e951..372b0eb6c1ca9d14499212346c5f61246f76f867 100644 Binary files a/data/us_cities.rda and b/data/us_cities.rda differ diff --git a/inst/htmlwidgets/plugins/leaflet-search/leaflet-search.min.css b/inst/htmlwidgets/plugins/leaflet-search/leaflet-search.min.css index e301c732bce3a04f655932027c7fd8fbe3a3090c..53864b876ad78c28204d3c2ae791a4a7ecc02103 100644 --- a/inst/htmlwidgets/plugins/leaflet-search/leaflet-search.min.css +++ b/inst/htmlwidgets/plugins/leaflet-search/leaflet-search.min.css @@ -15,4 +15,4 @@ * */ - .leaflet-container .leaflet-control-search{position:relative;float:left;background:#fff;color:#1978cf;border:2px solid rgba(0,0,0,.2);background-clip:padding-box;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;background-color:rgba(255,255,255,.8);z-index:1000;margin-left:10px;margin-top:10px}.leaflet-control-search.search-exp{background:#fff;border:2px solid rgba(0,0,0,.2);background-clip:padding-box}.leaflet-control-search .search-input{display:block;float:left;background:#fff;border:1px solid #666;border-radius:2px;height:22px;padding:0 20px 0 2px;margin:4px 0 4px 4px}.leaflet-control-search.search-load .search-input{background:url(loader.gif) no-repeat center right #fff}.leaflet-control-search.search-load .search-cancel{visibility:hidden}.leaflet-control-search .search-cancel{display:block;width:22px;height:22px;position:absolute;right:28px;margin:6px 0;background:url(search-icon.png) no-repeat 0 -46px;text-decoration:none;filter:alpha(opacity=80);opacity:.8}.leaflet-control-search .search-cancel:hover{filter:alpha(opacity=100);opacity:1}.leaflet-control-search .search-cancel span{display:none;font-size:18px;line-height:20px;color:#ccc;font-weight:700}.leaflet-control-search .search-cancel:hover span{color:#aaa}.leaflet-control-search .search-button{display:block;float:left;width:30px;height:30px;background:url(search-icon.png) no-repeat 4px 4px #fff;border-radius:4px}.leaflet-control-search .search-button:hover{background:url(search-icon.png) no-repeat 4px -20px #fafafa}.leaflet-control-search .search-tooltip{position:absolute;top:100%;left:0;float:left;list-style:none;padding-left:0;min-width:120px;max-height:122px;box-shadow:1px 1px 6px rgba(0,0,0,.4);background-color:rgba(0,0,0,.25);z-index:1010;overflow-y:auto;overflow-x:hidden;cursor:pointer}.leaflet-control-search .search-tip{margin:2px;padding:2px 4px;display:block;color:#000;background:#eee;border-radius:.25em;text-decoration:none;white-space:nowrap;vertical-align:center}.leaflet-control-search .search-button:hover{background-color:#f4f4f4}.leaflet-control-search .search-tip-select,.leaflet-control-search .search-tip:hover{background-color:#fff}.leaflet-control-search .search-alert{cursor:pointer;clear:both;font-size:.75em;margin-bottom:5px;padding:0 .25em;color:#e00;font-weight:700;border-radius:.25em} +.leaflet-container .leaflet-control-search{position:relative;float:left;background:#fff;color:#1978cf;border:2px solid rgba(0,0,0,.2);background-clip:padding-box;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;background-color:rgba(255,255,255,.8);z-index:1000;margin-left:10px;margin-top:10px}.leaflet-control-search.search-exp{background:#fff;border:2px solid rgba(0,0,0,.2);background-clip:padding-box}.leaflet-control-search .search-input{display:block;float:left;background:#fff;border:1px solid #666;border-radius:2px;height:22px;padding:0 20px 0 2px;margin:4px 0 4px 4px}.leaflet-control-search.search-load .search-input{background:url(loader.gif) no-repeat center right #fff}.leaflet-control-search.search-load .search-cancel{visibility:hidden}.leaflet-control-search .search-cancel{display:block;width:22px;height:22px;position:absolute;right:28px;margin:6px 0;background:url(search-icon.png) no-repeat 0 -46px;text-decoration:none;filter:alpha(opacity=80);opacity:.8}.leaflet-control-search .search-cancel:hover{filter:alpha(opacity=100);opacity:1}.leaflet-control-search .search-cancel span{display:none;font-size:18px;line-height:20px;color:#ccc;font-weight:700}.leaflet-control-search .search-cancel:hover span{color:#aaa}.leaflet-control-search .search-button{display:block;float:left;width:30px;height:30px;background:url(search-icon.png) no-repeat 4px 4px #fff;border-radius:4px}.leaflet-control-search .search-button:hover{background:url(search-icon.png) no-repeat 4px -20px #fafafa}.leaflet-control-search .search-tooltip{position:absolute;top:100%;left:0;float:left;list-style:none;padding-left:0;min-width:120px;max-height:122px;box-shadow:1px 1px 6px rgba(0,0,0,.4);background-color:rgba(0,0,0,.25);z-index:1010;overflow-y:auto;overflow-x:hidden;cursor:pointer}.leaflet-control-search .search-tip{margin:2px;padding:2px 4px;display:block;color:#000;background:#eee;border-radius:.25em;text-decoration:none;white-space:nowrap;vertical-align:center}.leaflet-control-search .search-button:hover{background-color:#f4f4f4}.leaflet-control-search .search-tip-select,.leaflet-control-search .search-tip:hover{background-color:#fff}.leaflet-control-search .search-alert{cursor:pointer;clear:both;font-size:.75em;margin-bottom:5px;padding:0 .25em;color:#e00;font-weight:700;border-radius:.25em} diff --git a/man/add_cluster_button.Rd b/man/add_cluster_button.Rd index 586a746f00065b9b7b95e275c4685d454f617f4b..15ad5db83ca92af5efb4c48d20702cfcf7c0361c 100644 --- a/man/add_cluster_button.Rd +++ b/man/add_cluster_button.Rd @@ -7,7 +7,7 @@ add_cluster_button(map, cluster_id, position = "topleft") } \arguments{ -\item{map}{'\link{leaflet}'. +\item{map}{'leaflet'. Map widget object} \item{cluster_id}{'character' string. diff --git a/man/add_fullscreen_button.Rd b/man/add_fullscreen_button.Rd index 443593120f0650f056b0ce05d5fe0f1e811be440..6ed2b997b9afa27fb679de4ff35db3606538f34d 100644 --- a/man/add_fullscreen_button.Rd +++ b/man/add_fullscreen_button.Rd @@ -7,7 +7,7 @@ add_fullscreen_button(map, pseudo_fullscreen = FALSE, position = "topleft") } \arguments{ -\item{map}{'\link{leaflet}'. +\item{map}{'leaflet'. Map widget object} \item{pseudo_fullscreen}{'logical' flag. diff --git a/man/add_home_button.Rd b/man/add_home_button.Rd index f623654f7e2626b1deedc6d13f344378c689e2c8..35f739f41980efbb40d37d232c31120a354e5535 100644 --- a/man/add_home_button.Rd +++ b/man/add_home_button.Rd @@ -7,7 +7,7 @@ add_home_button(map, extent = NULL, position = "topleft") } \arguments{ -\item{map}{'\link{leaflet}'. +\item{map}{'leaflet'. Map widget object} \item{extent}{'bbox', or 'numeric' vector of length four, with \code{xmin}, \code{xmax}, \code{ymin} and \code{ymax} values. @@ -28,10 +28,9 @@ A new HTML web \code{map} with added element, an object of class 'leaflet'. Add a button to a \href{https://leafletjs.com/}{Leaflet} map that zooms to the provided map extent. } \examples{ +extent <- c(-124.409, -114.131, 32.534, 42.009) # California make_map(maps = "Topo") |> - add_home_button( - extent = c(-124.409, -114.131, 32.534, 42.009) # California - ) + add_home_button(extent = extent) } \seealso{ \code{\link{make_map}} function for creating a map widget. diff --git a/man/add_legend.Rd b/man/add_legend.Rd index 04de7db6e667130ec81125ad81984ce642a9d0f3..f8f3a9afb7084a46acd9e91d7ce177e8213036c7 100644 --- a/man/add_legend.Rd +++ b/man/add_legend.Rd @@ -16,7 +16,7 @@ add_legend( ) } \arguments{ -\item{map}{'\link{leaflet}'. +\item{map}{'leaflet'. Map widget object} \item{labels}{'character' vector. @@ -48,7 +48,7 @@ A new HTML web \code{map} with added element, an object of class 'leaflet'. Add a legend to a \href{https://leafletjs.com/}{Leaflet} map. } \examples{ -# define marker colors based on whether a city serves as a capital +# Define marker colors based on whether a city serves as a capital colors <- c( "Non-capital" = "green", "Capital" = "red" @@ -56,7 +56,7 @@ colors <- c( fill_colors <- colors[(us_cities$capital > 0) + 1L] |> as.character() -# print map with city circle markers and a map legend +# Print map with city circle markers and a map legend make_map(maps = "Topo") |> leaflet::addCircleMarkers( lng = ~lng, diff --git a/man/add_search_button.Rd b/man/add_search_button.Rd index ad5296a8e2493b37f1561e4e1b17d8d5b2ed5c18..476e283100e9f36e2801e6fb6309a6650446c880 100644 --- a/man/add_search_button.Rd +++ b/man/add_search_button.Rd @@ -15,7 +15,7 @@ add_search_button( ) } \arguments{ -\item{map}{'\link{leaflet}'. +\item{map}{'leaflet'. Map widget object} \item{group}{'character' string. diff --git a/man/make_map.Rd b/man/make_map.Rd index 261fb15cf9dbc9659995229869dab38f7c8fd6e7..15cdc7762ea27beb8cc3fb6e27b8a5596ac63254 100644 --- a/man/make_map.Rd +++ b/man/make_map.Rd @@ -45,7 +45,7 @@ Graphic layers added to the web map must be in latitude and longitude using WGS \description{ Create a \href{https://leafletjs.com/}{Leaflet} map widget that includes base maps offered through \href{https://www.usgs.gov/programs/national-geospatial-program/national-map}{The National Map} (TNM) -cached \href{https://apps.nationalmap.gov/services}{service endpoints}. +cached \href{https://apps.nationalmap.gov/services/}{service endpoints}. Information about the content of these base maps can be found within the \href{https://apps.nationalmap.gov/help/3.0\%20TNM\%20Base\%20Maps.htm}{TNM Base Maps} document. TNM content is limited to the United States and territories.