tippecanoe/dirtiles.hpp

13 lines
248 B
C++
Raw Normal View History

#include <string>
#ifndef DIRTILES_HPP
#define DIRTILES_HPP
std::string dir_read_tile(std::string pbfPath);
void dir_write_tile(const char *outdir, int z, int tx, int ty, std::string const &pbf);
void check_dir(const char *d, bool rm);
#endif