https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 9d48d6a93d04c800c3736e679992dd12f0f3acdc authored by Eric Fischer on 07 April 2016, 23:50:01 UTC
Merge pull request #208 from mapbox/simplify-crash
Tip revision: 9d48d6a
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