Nothing
#' Placeholder elevation lookup
#' @keywords internal
.elev_lookup <- function(lon, lat, method = c("constant"), constant = 100, ...) {
method <- match.arg(method)
if (method == "constant") return(rep(as.numeric(constant), length(lon)))
rep(as.numeric(constant), length(lon))
}
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.