https://github.com/cran/RgoogleMaps
Raw File
Tip revision: 1a2c99e4a19a7a57fb780dfd67f588580b4cacae authored by Markus Loecher on 26 January 2020, 11:50:02 UTC
version 1.4.5.2
Tip revision: 1a2c99e
LatLon2XY.Rd
\name{LatLon2XY}

\alias{LatLon2XY}

\title{computes the coordinate transformation from lat/lon to map tile coordinates }

\description{The function LatLon2XY(lat,lon,zoom) computes the coordinate transformation from lat/lon to map tile coordinates given a zoom level. 

It returns the tile coordinates as well as the pixel coordinates within the Tile itself. }

\usage{LatLon2XY(lat, lon, zoom)}

\arguments{

  \item{lat}{latitude values to transform}

  \item{lon}{longitude values to transform}

  \item{zoom}{zoom level.lat,lon,zoom}

}



\value{A list with values

\item{Tile}{integer numbers specifying the tile}

\item{Coords}{pixel coordinate within the Tile}}



\author{Markus Loecher}

\note{The fractional part times 256 is the pixel coordinate within the Tile itself. }







\examples{

LatLon2XY(38.45, -122.375, 11)

}

back to top