From 15684caed32e0db81e6109ca85c715f995830b9d Mon Sep 17 00:00:00 2001 From: Ivan Vazhenin Date: Wed, 31 Aug 2022 17:42:18 +0300 Subject: [PATCH] fix --- src/ol/source/Tile.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ol/source/Tile.js b/src/ol/source/Tile.js index 07767842f2..5bb9193687 100644 --- a/src/ol/source/Tile.js +++ b/src/ol/source/Tile.js @@ -282,10 +282,10 @@ class TileSource extends Source { */ getTileCacheForProjection(projection) { const sourceProjection = this.getProjection(); - assert( - sourceProjection === null || equivalent(sourceProjection, projection), - 68 // A VectorTile source can only be rendered if it has a projection compatible with the view projection. - ); + // assert( + // sourceProjection === null || equivalent(sourceProjection, projection), + // 68 // A VectorTile source can only be rendered if it has a projection compatible with the view projection. + // ); return this.tileCache; }