Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Commit

Permalink
increase simplification for line annotations
Browse files Browse the repository at this point in the history
to make them look better when drawn semi-transparently
  • Loading branch information
ansis committed Jul 8, 2015
1 parent 888ae5e commit 03c4ed7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mbgl/map/annotation.cpp
Expand Up @@ -133,7 +133,7 @@ AnnotationManager::addTileFeature(const uint32_t annotationID,

features.push_back(Convert::create(Tags(), featureType, rings));

shapeTilers.emplace(annotationID, std::make_unique<GeoJSONVT>(features, maxZoom));
shapeTilers.emplace(annotationID, std::make_unique<GeoJSONVT>(features, maxZoom, 4, 100, 10));

} else {

Expand Down

1 comment on commit 03c4ed7

@mourner
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ansis do we really need the simplification bump here? The default for Mapnik VT is now 4 mapbox/tilelive-bridge@6bd5b3c, it would be nice to match it.

Please sign in to comment.