Revision 666565e8204f5150e5023374c3e82a2452cf3bde authored by Eric Fischer on 27 April 2016, 22:52:05 UTC, committed by Eric Fischer on 27 April 2016, 22:52:05 UTC
2 parent s 8c7ac58 + 7449150
Raw File
projection.hpp
void latlon2tile(double lat, double lon, int zoom, long long *x, long long *y);
void tile2latlon(long long x, long long 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