Revision 3bb87227ec440222ff3af536dd76ed392555de9c authored by Eric Fischer on 19 October 2015, 20:32:02 UTC, committed by Eric Fischer on 19 October 2015, 20:32:02 UTC
1 parent ef5fdf4
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