Nothing
#' Retrieve India map data
#'
#' @param regions The region breakdown for the map, can be one of
#' (\code{"states"}, \code{"state"}, \code{"districts"}, \code{"district"}).
#' The default is \code{"states"}.
#' @param include The regions to include in the resulting map. If \code{regions} is
#' \code{"states"}/\code{"state"}, the value can be either a state name, abbreviation or code.
#' For districts, the district codes must be provided as there can be multiple districts with the
#' same name. If states are provided in the districts map, only districts in the included states
#' will be returned.
#' @param exclude The regions to exclude in the resulting map. If \code{regions} is
#' \code{"states"}/\code{"state"}, the value can be either a state name, abbreviation or code.
#' For districts, the district codes must be provided as there can be multiple districts with the
#' same name. The regions listed in the \code{include} parameter are applied first and the
#' \code{exclude} regions are then removed from the resulting map. Any excluded regions
#' not present in the included regions will be ignored.
#'
#' @seealso [mapindiatools::map_india()] of which this function is a wrapper for.
#'
#' @return A data frame of India map coordinates divided by the desired \code{regions}.
#'
#' @examples
#' str(map_india())
#'
#' df <- map_india(regions = "districts")
#' states <- map_india(include = c("WB", "NCT", "AP"))
#'
#' @export
map_india <- function(regions = c("states", "state", "districts", "district"),
include = c(),
exclude = c()) {
mapindiatools::map_india(regions = regions, include = include, exclude = exclude)
}
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.