Skip to content

Commit

Permalink
wip: test upgraded screenshot
Browse files Browse the repository at this point in the history
  • Loading branch information
blacha committed Feb 4, 2025
1 parent f59a1bf commit feb1ba3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/screenshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
docker run --rm --network="host" -v $PWD:$PWD ghcr.io/linz/basemaps-screenshot/cli:v1 --url http://localhost:5000 --output $PWD/.artifacts/visual-snapshots
- name: Save snapshots
uses: getsentry/action-visual-snapshot@v2
uses: blacha/action-visual-snapshot@v2
with:
save-only: true
snapshot-path: .artifacts/visual-snapshots
Expand Down
4 changes: 3 additions & 1 deletion packages/geo/src/tms/index.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
import { Epsg, EpsgCode } from '../epsg.js';
import { TileMatrixSet } from '../tile.matrix.set.js';
import { Citm2000Tms } from './citm2000.js';

Check failure on line 3 in packages/geo/src/tms/index.ts

View workflow job for this annotation

GitHub Actions / build-containers

Cannot find module './citm2000.js' or its corresponding type declarations.

Check failure on line 3 in packages/geo/src/tms/index.ts

View workflow job for this annotation

GitHub Actions / build (macos-latest)

Cannot find module './citm2000.js' or its corresponding type declarations.

Check failure on line 3 in packages/geo/src/tms/index.ts

View workflow job for this annotation

GitHub Actions / build-deploy

Cannot find module './citm2000.js' or its corresponding type declarations.
import { GoogleTms } from './google.js';
import { Nztm2000QuadTms, Nztm2000Tms } from './nztm2000.js';

export type Nullish = null | undefined;

export const TileMatrixSets = {
/** All TileMatrixSets that are currently supported */
All: [GoogleTms, Nztm2000Tms, Nztm2000QuadTms],
All: [GoogleTms, Nztm2000Tms, Nztm2000QuadTms, Citm2000Tms],
/** Default mapping of EPSG code to Tile matrix set */
Defaults: new Map([
[Epsg.Google.code, GoogleTms],
[Epsg.Nztm2000.code, Nztm2000Tms],
[Epsg.Citm2000.code, Citm2000Tms],
]),
/**
* Get a tile matrix set by EPSG Code
Expand Down

0 comments on commit feb1ba3

Please sign in to comment.