Revision 3bb87227ec440222ff3af536dd76ed392555de9c authored by Eric Fischer on 19 October 2015, 20:32:02 UTC, committed by Eric Fischer on 19 October 2015, 20:32:02 UTC
1 parent ef5fdf4
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