https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 094b3e780c9e2c78a676502c2365eeccab3679c6 authored by Eric Fischer on 02 February 2016, 00:09:29 UTC
Add an option (-ag) for the glow calculation and fix its the memory leak
Tip revision: 094b3e7
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