https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 2518f238d428ef3f567ac2438992cbdeaa147d1e authored by Eric Fischer on 06 September 2017, 18:49:55 UTC
Use tippecanoe instead of tile-join in the filter example
Tip revision: 2518f23
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);

#endif
back to top