We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I was struggling with gid and fid columns bloating the size of my vector tiles.
gid
fid
@springmeyer suggested editing start_tile_feature to add support to drop certain columns during encoding.
start_tile_feature
E.g.
void start_tile_feature(mapnik::feature_impl const& feature)
to
void start_tile_feature(mapnik::feature_impl const& feature, std::vector<std::string> const& fields_to_exclude)
The text was updated successfully, but these errors were encountered:
I will take a stab at this.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
I was struggling with
gid
andfid
columns bloating the size of my vector tiles.@springmeyer suggested editing
start_tile_feature
to add support to drop certain columns during encoding.E.g.
to
The text was updated successfully, but these errors were encountered: