#' @title List of all API keys from IGN
#'
#' @description
#' All API keys are manually extract from this
#' [table](https://geoservices.ign.fr/documentation/services/tableau_ressources)
#' provided by IGN.
#'
#' @name get_apikeys
#' @return `character`
#' @export
#'
#' @examples
#' \dontrun{
#' # One API key
#' get_apikeys()[1]
#'
#' # All API keys
#' get_apikeys()
#' }
#'
get_apikeys <- function() {
apikeys <- c(
"administratif",
"adresse",
"agriculture",
"altimetrie",
"cartes",
"cartovecto",
"clc",
"economie",
"enr",
"environnement",
"geodesie",
"lambert93",
"ocsge",
"ortho",
"orthohisto",
"parcellaire",
"satellite",
"sol",
"topographie",
"transports"
)
apikeys
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.