https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 7a9f1d0977551f0a484783932248b842b8db2b9b authored by Eric Fischer on 08 January 2020, 23:25:16 UTC
Limit the length of the generator_options in the tileset metadata
Tip revision: 7a9f1d0
evaluator.hpp
#ifndef EVALUATOR_HPP
#define EVALUATOR HPP

#include <map>
#include <string>
#include <set>
#include "jsonpull/jsonpull.h"
#include "mvt.hpp"

bool evaluate(std::map<std::string, mvt_value> const &feature, std::string const &layer, json_object *filter, std::set<std::string> &exclude_attributes);
json_object *parse_filter(const char *s);
json_object *read_filter(const char *fname);

#endif
back to top