Revision 25072133fb0b24070055c89855290b0ff4f3d43f authored by Tom MacWright on 29 May 2015, 16:15:48 UTC, committed by Tom MacWright on 29 May 2015, 16:15:48 UTC
1 parent 142ea37
Raw File
projection.h
void latlon2tile(double lat, double lon, int zoom, unsigned int *x, unsigned int *y);
void tile2latlon(unsigned int x, unsigned int y, int zoom, double *lat, double *lon);
unsigned long long encode(unsigned int wx, unsigned int wy);
void decode(unsigned long long index, unsigned *wx, unsigned *wy);
back to top