Nothing
#' Convert Coordinates Between Different Systems
#'
#' This function converts geographical coordinates between different coordinate systems,
#' including WGS-84, GCJ-02 (Chinese National Standard), and BD-09 (Baidu Map).
#'
#' @param latitude Numeric value representing the latitude of the point to convert.
#' @param longitude Numeric value representing the longitude of the point to convert.
#' @param from A character string indicating the source coordinate system.
#' Options include "WGS-84", "GCJ-02", and "BD-09".
#' @param to A character string indicating the target coordinate system.
#' Options include "WGS-84", "GCJ-02", and "BD-09".
#'
#' @return A numeric vector of length 2, containing the converted latitude and longitude.
#' @export
#'
#' @examples
#' # Convert WGS-84 coordinates to GCJ-02
#' convertCoordinates(39.90105, 116.42079, from = "WGS-84", to = "GCJ-02")
#'
#' # Convert GCJ-02 coordinates to BD-09
#' convertCoordinates(39.90245, 116.42702, "GCJ-02", "WGS-84")
#'
#' # Convert WGS-84 coordinates to BD-09
#' convertCoordinates(39.90105, 116.42079, "WGS-84", "BD-09")
convertCoordinates <- function(latitude, longitude, from, to) {
.Call(`_leafletZH_convertCoordinates`, latitude, longitude, from, to)
}
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.