#' contextR
#' @name create_darksky_api_call
#' @export
#' @param lat class: numeric
#' @param lng class: numeric
#' @param delimiter class: string
#' @examples
#' create_lat_lng_str(lat, lng, delimiter=",")
create_lat_lng_str <- function(lat,lng,delimiter=","){
return(paste(lat,lng,sep=delimiter))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.