diff options
author | Asheem Mamoowala <asheem.mamoowala@mapbox.com> | 2017-11-29 20:18:40 -0800 |
---|---|---|
committer | Asheem Mamoowala <asheem.mamoowala@mapbox.com> | 2017-12-06 19:44:12 -0800 |
commit | 31a216459c564ff7771b0e30837978dbd298de51 (patch) | |
tree | bc33ec1fdd304e8b773efc83438bbb7e4449d5f9 /src/mbgl/style/sources | |
parent | d783611d1a8a8ef1cce47cb8913fc573fc2e6cf7 (diff) | |
download | qtlocation-mapboxgl-31a216459c564ff7771b0e30837978dbd298de51.tar.gz |
[core] Mark custom geometry tiles stale without clearing data
Diffstat (limited to 'src/mbgl/style/sources')
-rw-r--r-- | src/mbgl/style/sources/custom_geometry_source.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbgl/style/sources/custom_geometry_source.cpp b/src/mbgl/style/sources/custom_geometry_source.cpp index ab46843d38..b37490a5ce 100644 --- a/src/mbgl/style/sources/custom_geometry_source.cpp +++ b/src/mbgl/style/sources/custom_geometry_source.cpp @@ -40,6 +40,6 @@ void CustomGeometrySource::invalidateTile(const CanonicalTileID& tileID) { void CustomGeometrySource::invalidateRegion(const LatLngBounds& bounds) { loader->invoke(&CustomTileLoader::invalidateRegion, bounds, impl().getZoomRange()); } - + } // namespace style } // namespace mbgl |