Skip to content

Commit

Permalink
Add more unimplemented functions
Browse files Browse the repository at this point in the history
  • Loading branch information
olivroy committed Feb 28, 2024
1 parent 632fc71 commit eb584fc
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 10 deletions.
6 changes: 6 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -189,6 +191,7 @@ export(tmapAddLayerOptions)
export(tmapGetShapeMeta1)
export(tmapGetShapeMeta2)
export(tmapOutput)
export(tmapProxy)
export(tmapShape)
export(tmapSplitShp)
export(tmapSubsetShp)
Expand All @@ -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)
Expand Down
42 changes: 37 additions & 5 deletions R/v4-not-implemented.R
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand All @@ -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")
}
31 changes: 26 additions & 5 deletions man/v4-not-yet.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit eb584fc

Please sign in to comment.