Revision b5f374cdaca17939bc95eaad2cf63833ec777e01 authored by Eric Fischer on 14 September 2015, 22:43:16 UTC, committed by Eric Fischer on 14 September 2015, 22:43:16 UTC
1 parent 5ab2673
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