Revision 5d701913ab4a54b625042e1d21f2c851675706d4 authored by Eric Fischer on 29 March 2016, 22:08:06 UTC, committed by Eric Fischer on 29 March 2016, 22:08:06 UTC
Add an option to give specific layer names to specific input files
2 parent s 72b7dc9 + 62fac4d
Raw File
mbtiles.h
sqlite3 *mbtiles_open(char *dbname, char **argv, int forcetable);

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, int forcetable);

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