From 670e858f5195a79cdec75853e24a8adb5cc340f9 Mon Sep 17 00:00:00 2001 From: Wentao Kuang Date: Mon, 12 Aug 2024 11:18:43 +1200 Subject: [PATCH] feat: Remove some 3d map tests to shorten screenshot running time. (#419) ### Motivation Screenshots in basemaps running time over 5mins now, which is longer than the container build deploy around 4 mins. We want to make they are similar time, so we don't need to wait. ### Modifications Remove some 3d screenshots tests. ### Verification --- src/tiles.ts | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/src/tiles.ts b/src/tiles.ts index 5ebb187..7b796dc 100644 --- a/src/tiles.ts +++ b/src/tiles.ts @@ -133,14 +133,6 @@ export const DefaultTestTiles: TestTile[] = [ style: 'aerial', hillshade: 'LINZ-Terrain', }, - { - name: 'aerial-3857-wellington-urban-terrain-z13', - tileMatrix: TileMatrixIdentifier.Google, - location: { lat: -41.3040702, lng: 174.7730613, z: 14 }, - tileSet: 'aerial', - style: 'aerial', - terrain: 'LINZ-Terrain', - }, { name: 'aerial-3857-mount-taranaki-terrain-hillshade-z14', tileMatrix: TileMatrixIdentifier.Google, @@ -159,14 +151,6 @@ export const DefaultTestTiles: TestTile[] = [ terrain: 'LINZ-Terrain', hillshade: 'LINZ-Terrain', }, - { - name: 'topographic-3857-tauranga-terrain-z12', - tileMatrix: TileMatrixIdentifier.Google, - location: { lat: -37.7635905, lng: 176.2261963, z: 12 }, - tileSet: 'topographic', - style: 'topographic', - terrain: 'LINZ-Terrain', - }, { name: 'topolite-3857-hillshade-z4', tileMatrix: TileMatrixIdentifier.Google, @@ -175,13 +159,4 @@ export const DefaultTestTiles: TestTile[] = [ style: 'topolite', hillshade: 'LINZ-Terrain', }, - { - name: 'topolite-3857-christchurch-rural-terrain-hillshade-z10', - tileMatrix: TileMatrixIdentifier.Google, - location: { lat: -43.6547079, lng: 172.6999283, z: 10 }, - tileSet: 'topographic', - style: 'topolite', - terrain: 'LINZ-Terrain', - hillshade: 'LINZ-Terrain', - }, ];