Revision 8cc844c9dd7cf788078e9f2f0bf77c83ea9aa787 authored by Eric Fischer on 31 March 2016, 21:33:11 UTC, committed by Eric Fischer on 31 March 2016, 21:33:11 UTC
Fix where I used the wrong names for the max/min long long constants
2 parent s 5d70191 + 389cdf2
Raw File
projection.h
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