Revision 2e3f03172e2749a1fba5909cb60300192c2a9fea authored by Eric Fischer on 20 August 2015, 22:01:34 UTC, committed by Eric Fischer on 20 August 2015, 22:01:34 UTC
1 parent ed37868
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