https://github.com/mapbox/tippecanoe
Raw File
Tip revision: e51899314dbf77a2a40a2607cb797ee4af532171 authored by Eric Fischer on 05 April 2019, 22:10:39 UTC
Don't run shell filters if the current zoom is below the minzoom
Tip revision: e518993
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