https://github.com/mapbox/tippecanoe
Raw File
Tip revision: de2037a479a926e025e7ec0cfe20fc990f52439f authored by Eric Fischer on 02 August 2019, 18:44:07 UTC
Add --split-complex-polygons option
Tip revision: de2037a
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