Revision 581728f15719982f37d6b17c5bfc46bb603bb4cc authored by Eric Fischer on 08 January 2016, 19:55:23 UTC, committed by Eric Fischer on 08 January 2016, 19:55:23 UTC
Add an option to do line simplification only at zooms below maxzoom
2 parent s 5e02bdd + b054787
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