diff --git a/NAMESPACE b/NAMESPACE index 345838e4..3592bf67 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -157,7 +157,9 @@ export(tm_pos_auto_out) export(tm_pos_in) export(tm_pos_out) export(tm_raster) +export(tm_remove_layer) export(tm_rgb) +export(tm_rgba) export(tm_scale) export(tm_scale_bar) export(tm_scale_bivariate) @@ -189,6 +191,7 @@ export(tmapAddLayerOptions) export(tmapGetShapeMeta1) export(tmapGetShapeMeta2) export(tmapOutput) +export(tmapProxy) export(tmapShape) export(tmapSplitShp) export(tmapSubsetShp) @@ -211,6 +214,9 @@ export(tmap_options_reset) export(tmap_options_save) export(tmap_save) export(tmap_style) +export(tmap_style_catalog) +export(tmap_style_catalogue) +export(tmap_tip) export(ttm) export(ttmp) import(classInt) diff --git a/R/v4-not-implemented.R b/R/v4-not-implemented.R index c44a14b1..2cb818fe 100644 --- a/R/v4-not-implemented.R +++ b/R/v4-not-implemented.R @@ -1,7 +1,8 @@ #' These functions will be implemented soon #' @export +#' @param ... Arguments #' @name v4-not-yet -tm_squares <- function() { +tm_squares <- function(...) { stop("Not yet implemented in v4") } #' @export @@ -16,7 +17,7 @@ tm_markers <- function() { } #' @export #' @rdname v4-not-yet -tm_logo <- function() { +tm_logo <- function(...) { stop("Not yet implemented in v4") } #' @export @@ -26,16 +27,47 @@ tm_minimap <- function() { } #' @export #' @rdname v4-not-yet -tmap_grob <- function() { +tmap_grob <- function(...) { stop("Not yet implemented in v4") } #' @export #' @rdname v4-not-yet -tmapOutput <- function() { +tmapOutput <- function(...) { stop("Not yet implemented in v4") } #' @export #' @rdname v4-not-yet -renderTmap <- function() { +tmapProxy <- function(...) { stop("Not yet implemented in v4") } +#' @export +#' @rdname v4-not-yet +renderTmap <- function(...) { + stop("Not yet implemented in v4") +} +#' @export +#' @rdname v4-not-yet +tm_remove_layer <- function(...) { + stop("Not yet implemented in v4") +} +#' @export +#' @rdname v4-not-yet +tm_rgba <- function(...) { + .Deprecated(new = "tm_rgb()") + stop("Not yet implemented in v4") +} +#' @export +#' @rdname v4-not-yet +tmap_tip <- function(...) { + stop("Not yet implemented in v4") +} +#' @export +#' @rdname v4-not-yet +tmap_style_catalog <- function(...) { + stop("Not yet implemented in v4") +} +#' @export +#' @rdname v4-not-yet +tmap_style_catalogue <- function(...) { + stop("Not yet implemented in v4") +} \ No newline at end of file diff --git a/man/v4-not-yet.Rd b/man/v4-not-yet.Rd index 26648c22..8d01d2df 100644 --- a/man/v4-not-yet.Rd +++ b/man/v4-not-yet.Rd @@ -9,24 +9,45 @@ \alias{tm_minimap} \alias{tmap_grob} \alias{tmapOutput} +\alias{tmapProxy} \alias{renderTmap} +\alias{tm_remove_layer} +\alias{tm_rgba} +\alias{tmap_tip} +\alias{tmap_style_catalog} +\alias{tmap_style_catalogue} \title{These functions will be implemented soon} \usage{ -tm_squares() +tm_squares(...) tm_iso() tm_markers() -tm_logo() +tm_logo(...) tm_minimap() -tmap_grob() +tmap_grob(...) -tmapOutput() +tmapOutput(...) -renderTmap() +tmapProxy(...) + +renderTmap(...) + +tm_remove_layer(...) + +tm_rgba(...) + +tmap_tip(...) + +tmap_style_catalog(...) + +tmap_style_catalogue(...) +} +\arguments{ +\item{...}{Arguments} } \description{ These functions will be implemented soon