https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 47741a6b70efee36febc697a1846cae84b95322e authored by Eric Fischer on 08 November 2019, 23:55:38 UTC
Don't set fillzoom unless we are actually removing filled tiles
Tip revision: 47741a6
text.hpp
#ifndef TEXT_HPP
#define TEXT_HPP

#include <string>

std::string check_utf8(std::string text);
const char *utf8_next(const char *s, long *c);
std::string truncate16(std::string const &s, size_t runes);
int integer_zoom(std::string where, std::string text);
std::string format_commandline(int argc, char **argv);

#endif
back to top