Revision e6c5aa9bfebfad2581d722dbbdb63f732370e97b authored by Eric Fischer on 19 June 2015, 22:53:09 UTC, committed by Eric Fischer on 19 June 2015, 22:53:09 UTC
1 parent e6997b0
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