Revision 45ad7e47f04a85e87ec7f303dc58d39ce6d20727 authored by Eric Fischer on 05 June 2015, 22:58:58 UTC, committed by Eric Fischer on 05 June 2015, 22:58:58 UTC
1 parent 9b34f7e
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