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

Commit

Permalink
[core] Set annotation max zoom to 18
Browse files Browse the repository at this point in the history
  • Loading branch information
brunoabinader committed Jun 28, 2016
1 parent 1fa1819 commit e1be2c4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/mbgl/annotation/annotation_source.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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&) {
Expand Down

0 comments on commit e1be2c4

Please sign in to comment.