Revision b2fdcba6b04eb4356eab855c1d2cb55d68cf4f93 authored by Eric Fischer on 01 July 2015, 00:21:48 UTC, committed by Eric Fischer on 01 July 2015, 00:21:48 UTC
It takes a little bit of time, and it's already not shrinking them
for number objects.
1 parent 767a581
Raw File
mbtiles.h
sqlite3 *mbtiles_open(char *dbname, char **argv);

void mbtiles_write_tile(sqlite3 *outdb, int z, int tx, int ty, const char *data, int size);

void mbtiles_write_metadata(sqlite3 *outdb, const char *fname, char **layername, int minzoom, int maxzoom, double minlat, double minlon, double maxlat, double maxlon, double midlat, double midlon, struct pool **file_keys, int nlayers);

void mbtiles_close(sqlite3 *outdb, char **argv);
back to top