From 80e1bcbab4847ef607fca703cd8f8ee1ed5dd545 Mon Sep 17 00:00:00 2001 From: Wentao Kuang Date: Mon, 12 Aug 2024 10:54:02 +1200 Subject: [PATCH] Remove some 3d map tests to shorten screenshot running time. --- src/tiles.ts | 27 +-------------------------- 1 file changed, 1 insertion(+), 26 deletions(-) diff --git a/src/tiles.ts b/src/tiles.ts index 5ebb187..4bd9701 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, @@ -174,14 +158,5 @@ export const DefaultTestTiles: TestTile[] = [ tileSet: 'topographic', 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', - }, + } ];