Revision 77b451f2c8f6cd8e4e4e138d83e29aa5e4791b0d authored by Eric Fischer on 12 October 2015, 19:51:55 UTC, committed by Eric Fischer on 12 October 2015, 19:51:55 UTC
1 parent 8c5681a
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