summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mbgl/annotation/annotation_source.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mbgl/annotation/annotation_source.cpp b/src/mbgl/annotation/annotation_source.cpp
index 61fc4ca2e4..cc82b34de7 100644
--- a/src/mbgl/annotation/annotation_source.cpp
+++ b/src/mbgl/annotation/annotation_source.cpp
@@ -15,7 +15,8 @@ AnnotationSource::Impl::Impl(Source& base_)
}
Range<uint8_t> AnnotationSource::Impl::getZoomRange() {
- return { 0, 22 };
+ // Same as default geojson-vt-cpp.
+ return { 0, 18 };
}
void AnnotationSource::Impl::load(FileSource&) {