#' Generate a PDF field guide using the ALA's field guide generator
#'
#' @references \url{http://fieldguide.ala.org.au/}
#' @param guids character: vector of GUIDs
#' @param title string: title to use in the field guide PDF
#' @param filename string: filename for the PDF document
#' @param overwrite logical: overwrite the file if it already exists?
#'
#' @return filename
#'
#' @seealso \code{\link{search_guids}}
#'
#' @examples
#' \dontrun{
#' fieldguide(guids=
#' c("urn:lsid:biodiversity.org.au:afd.taxon:95773568-053d-44de-a624-5699f0ac4a59",
#' "http://id.biodiversity.org.au/node/apni/2890970"))
#' }
#'
# @export # no api in NBN for this?
fieldguide <- function(guids,title="Field guide",filename=tempfile(fileext=".pdf"),overwrite=FALSE) {
ALA4R::fieldguide(guids,title,filename,overwrite)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.