Revision 7f24cd6767be123593c44bd7dff08331bc39907e authored by Eric Fischer on 02 November 2015, 22:03:45 UTC, committed by Eric Fischer on 02 November 2015, 22:03:45 UTC
1 parent 84173e2
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