LonLat2XY | R Documentation |
Convert a lon/lat coordinate to a tile coordinate for a given zoom. Decimal tile coordinates (x, y) are reported.
LonLat2XY(lon_deg, lat_deg, zoom, xpix = 256, ypix = 256)
lon_deg |
longitude in degrees |
lat_deg |
latitude in degrees |
zoom |
zoom |
xpix |
width of tile in pixels |
ypix |
length of tile in pixels |
a data frame with columns X, Y, x, y
David Kahle david@kahle.io, based on
RgoogleMaps::LatLon2XY()
by Markus Loecher of Sense Networks
markus@sensenetworks.com
https://wiki.openstreetmap.org/wiki/Slippy_map_tilenames
## Not run:
gc <- geocode('baylor university')
LonLat2XY(gc$lon, gc$lat, 10)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.