Revision 25072133fb0b24070055c89855290b0ff4f3d43f authored by Tom MacWright on 29 May 2015, 16:15:48 UTC, committed by Tom MacWright on 29 May 2015, 16:15:48 UTC
1 parent 142ea37
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