https://github.com/cran/RgoogleMaps
Raw File
Tip revision: 4d5b28f1b52eb3b0469d39ab64a115f60f45950d authored by Markus Loecher on 20 August 2019, 11:40:05 UTC
version 1.4.4
Tip revision: 4d5b28f
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