Nothing
#' Translate geometry vectors
#'
#' @inheritParams wk_handle
#' @param to A prototype object.
#'
#' @export
#'
wk_translate <- function(handleable, to, ...) {
UseMethod("wk_translate", to)
}
#' @rdname wk_translate
#' @export
wk_translate.default <- function(handleable, to, ...) {
result <- wk_handle(handleable, wk_writer(to), ...)
attr(result, "crs") <- wk_crs_output(handleable, to)
wk_set_geodesic(result, wk_is_geodesic_output(handleable, to))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.