https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 02b020a2c74da21f146a9e94f53731f90132fc83 authored by Eric Fischer on 27 October 2015, 23:48:02 UTC
Run the JSON parsers in separate threads
Tip revision: 02b020a
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