Revision 85919de4901ae526f5fa23ba430b06757aca7cff authored by Eric Fischer on 10 April 2015, 18:03:36 UTC, committed by Eric Fischer on 10 April 2015, 18:03:36 UTC
2 parent s e66d976 + fd8de69
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