mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-01-22 04:18:01 +00:00
5 lines
288 B
C
5 lines
288 B
C
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);
|