Revision be94bd0dd55ad711982ef64263799b009ff87199 authored by Eric Fischer on 27 October 2014, 16:52:25 UTC, committed by Eric Fischer on 27 October 2014, 16:52:25 UTC
1 parent 4b171c7
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