├── .github └── workflows │ ├── copy-external-repo.yml │ ├── deploy-gh-pages.yml │ ├── e2e.yaml │ ├── format.yml │ ├── lint.yml │ ├── sync-public.yml │ └── vrt.yaml ├── .gitignore ├── .nojekyll ├── .prettierignore ├── .prettierrc ├── Dockerfile ├── LICENSE.txt ├── README.md ├── docker-compose.yml ├── eslint.config.mjs ├── next.config.ts ├── package.json ├── playwright.config.ts ├── public ├── .nojekyll ├── images │ ├── pale.png │ ├── seamlessphoto.png │ ├── skeleton.png │ ├── std-english.png │ └── std.png ├── setting.json ├── sources │ ├── 3d.json │ └── dems.json └── styles │ ├── pale.json │ ├── seamlessphoto.json │ ├── skeleton.json │ ├── std-english.json │ └── std.json ├── src ├── app │ ├── (map) │ │ ├── layout.tsx │ │ └── page.tsx │ ├── favicon.ico │ └── layout.tsx ├── components │ ├── custom │ │ ├── CenterInfoPopover.tsx │ │ ├── LayerGroupItemProvider.tsx │ │ ├── MapComponent.tsx │ │ ├── MapDemSelector.tsx │ │ ├── MapLayerSelector.tsx │ │ ├── MapMenu.tsx │ │ ├── MapSelectedLayerList.tsx │ │ ├── MapStyleSelector.tsx │ │ ├── MapStyleSelectorItem.tsx │ │ ├── MapTestSupporter.tsx │ │ ├── MapTintItem.tsx │ │ ├── MapTintList.tsx │ │ ├── PointCloudOverlay.tsx │ │ └── SearchInput.tsx │ └── ui │ │ ├── accordion.tsx │ │ ├── action-bar.tsx │ │ ├── alert.tsx │ │ ├── avatar.tsx │ │ ├── blockquote.tsx │ │ ├── breadcrumb.tsx │ │ ├── checkbox-card.tsx │ │ ├── checkbox.tsx │ │ ├── clipboard.tsx │ │ ├── close-button.tsx │ │ ├── color-mode.tsx │ │ ├── color-picker.tsx │ │ ├── data-list.tsx │ │ ├── dialog.tsx │ │ ├── drawer.tsx │ │ ├── empty-state.tsx │ │ ├── field.tsx │ │ ├── file-upload.tsx │ │ ├── hover-card.tsx │ │ ├── input-group.tsx │ │ ├── link-button.tsx │ │ ├── menu.tsx │ │ ├── native-select.tsx │ │ ├── number-input.tsx │ │ ├── pagination.tsx │ │ ├── password-input.tsx │ │ ├── pin-input.tsx │ │ ├── popover.tsx │ │ ├── progress-circle.tsx │ │ ├── progress.tsx │ │ ├── prose.tsx │ │ ├── provider.tsx │ │ ├── qr-code.tsx │ │ ├── radio-card.tsx │ │ ├── radio.tsx │ │ ├── rating.tsx │ │ ├── segmented-control.tsx │ │ ├── select.tsx │ │ ├── skeleton.tsx │ │ ├── slider.tsx │ │ ├── stat.tsx │ │ ├── status.tsx │ │ ├── stepper-input.tsx │ │ ├── steps.tsx │ │ ├── switch.tsx │ │ ├── tag.tsx │ │ ├── timeline.tsx │ │ ├── toaster.tsx │ │ ├── toggle-tip.tsx │ │ ├── toggle.tsx │ │ └── tooltip.tsx ├── hooks │ ├── useDem2ReliefProtocol.ts │ ├── useLayers.ts │ ├── useMapDems.ts │ ├── useMapStyles.ts │ ├── usePointCloud.ts │ └── useSearchSuggestion.ts └── lib │ ├── dem2ReliefProtocol.ts │ ├── getAddressFromGeojsonTile.ts │ ├── getDemInfoFromDemTile.ts │ ├── getErrorMessage.ts │ ├── getLayerSets.ts │ ├── getUTMPointNameFromPoint.ts │ ├── mesh.ts │ ├── muni.ts │ ├── pickPalette.ts │ └── protocolUtils.ts ├── tests ├── e2e │ ├── CenterInfoPopover.spec.ts │ ├── MapComponent.spec.ts │ ├── MapDemSelector.spec.ts │ ├── MapLayerSelector.spec.ts │ ├── MapSelectedLayerList.spec.ts │ └── map.spec.ts ├── helper │ ├── mask.css │ └── testExpansion.ts └── vrt │ ├── map.spec.ts │ └── map.spec.ts-snapshots │ ├── メニューの初期状態のデザインが変更されていない-1-vrt-chromium-dark-linux.png │ ├── メニューの初期状態のデザインが変更されていない-1-vrt-chromium-light-linux.png │ ├── メニューの初期状態のデザインが変更されていない-1-vrt-mobile-safari-linux.png │ ├── メニューの初期状態のデザインが変更されていない-2-vrt-chromium-dark-linux.png │ ├── メニューの初期状態のデザインが変更されていない-2-vrt-chromium-light-linux.png │ ├── メニューの初期状態のデザインが変更されていない-2-vrt-mobile-safari-linux.png │ ├── メニューを閉じた時のデザインが変更されていない-1-vrt-chromium-dark-linux.png │ ├── メニューを閉じた時のデザインが変更されていない-1-vrt-chromium-light-linux.png │ ├── メニューを閉じた時のデザインが変更されていない-1-vrt-mobile-safari-linux.png │ ├── レイヤーのドラック可能アイテムのデザインが変更されていない-1-vrt-chromium-dark-linux.png │ ├── レイヤーのドラック可能アイテムのデザインが変更されていない-1-vrt-chromium-light-linux.png │ ├── レイヤーのドラック可能アイテムのデザインが変更されていない-1-vrt-mobile-safari-linux.png │ ├── レイヤー選択箇所のディレクトリ展開時のデザインが変更されていない-1-vrt-chromium-dark-linux.png │ ├── レイヤー選択箇所のディレクトリ展開時のデザインが変更されていない-1-vrt-chromium-light-linux.png │ ├── レイヤー選択箇所のディレクトリ展開時のデザインが変更されていない-1-vrt-mobile-safari-linux.png │ ├── 初期表示時のデザインが変更されていない-1-vrt-chromium-dark-linux.png │ ├── 初期表示時のデザインが変更されていない-1-vrt-chromium-light-linux.png │ ├── 初期表示時のデザインが変更されていない-1-vrt-mobile-safari-linux.png │ ├── 情報ポップオーバーのデザインが変更されていない-1-vrt-chromium-dark-linux.png │ ├── 情報ポップオーバーのデザインが変更されていない-1-vrt-chromium-light-linux.png │ ├── 情報ポップオーバーのデザインが変更されていない-1-vrt-mobile-safari-linux.png │ ├── 検索ボックスのサジェスト表示時のデザインが変更されていない-1-vrt-chromium-dark-linux.png │ ├── 検索ボックスのサジェスト表示時のデザインが変更されていない-1-vrt-chromium-light-linux.png │ ├── 検索ボックスのサジェスト表示時のデザインが変更されていない-1-vrt-mobile-safari-linux.png │ ├── 立体-陰影-段彩-の表示を有効にした状態のデザインが変更されていない-1-vrt-chromium-dark-linux.png │ ├── 立体-陰影-段彩-の表示を有効にした状態のデザインが変更されていない-1-vrt-chromium-light-linux.png │ ├── 立体-陰影-段彩-の表示を有効にした状態のデザインが変更されていない-1-vrt-mobile-safari-linux.png │ ├── 色彩編集モーダルのデザインが変更されていない-1-vrt-chromium-dark-linux.png │ ├── 色彩編集モーダルのデザインが変更されていない-1-vrt-chromium-light-linux.png │ ├── 色彩編集モーダルのデザインが変更されていない-1-vrt-mobile-safari-linux.png │ ├── 色彩設定のデザインが変更されていない-1-vrt-chromium-dark-linux.png │ ├── 色彩設定のデザインが変更されていない-1-vrt-chromium-light-linux.png │ ├── 色彩設定のデザインが変更されていない-1-vrt-mobile-safari-linux.png │ ├── 色彩追加モーダルのデザインが変更されていない-1-vrt-chromium-dark-linux.png │ ├── 色彩追加モーダルのデザインが変更されていない-1-vrt-chromium-light-linux.png │ └── 色彩追加モーダルのデザインが変更されていない-1-vrt-mobile-safari-linux.png └── tsconfig.json /.github/workflows/copy-external-repo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/.github/workflows/copy-external-repo.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/.github/workflows/deploy-gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/.github/workflows/e2e.yaml -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/sync-public.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/.github/workflows/sync-public.yml -------------------------------------------------------------------------------- /.github/workflows/vrt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/.github/workflows/vrt.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/.gitignore -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | public/ 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/.prettierrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /public/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/pale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/public/images/pale.png -------------------------------------------------------------------------------- /public/images/seamlessphoto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/public/images/seamlessphoto.png -------------------------------------------------------------------------------- /public/images/skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/public/images/skeleton.png -------------------------------------------------------------------------------- /public/images/std-english.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/public/images/std-english.png -------------------------------------------------------------------------------- /public/images/std.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/public/images/std.png -------------------------------------------------------------------------------- /public/setting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/public/setting.json -------------------------------------------------------------------------------- /public/sources/3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/public/sources/3d.json -------------------------------------------------------------------------------- /public/sources/dems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/public/sources/dems.json -------------------------------------------------------------------------------- /public/styles/pale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/public/styles/pale.json -------------------------------------------------------------------------------- /public/styles/seamlessphoto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/public/styles/seamlessphoto.json -------------------------------------------------------------------------------- /public/styles/skeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/public/styles/skeleton.json -------------------------------------------------------------------------------- /public/styles/std-english.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/public/styles/std-english.json -------------------------------------------------------------------------------- /public/styles/std.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/public/styles/std.json -------------------------------------------------------------------------------- /src/app/(map)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/app/(map)/layout.tsx -------------------------------------------------------------------------------- /src/app/(map)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/app/(map)/page.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/components/custom/CenterInfoPopover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/custom/CenterInfoPopover.tsx -------------------------------------------------------------------------------- /src/components/custom/LayerGroupItemProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/custom/LayerGroupItemProvider.tsx -------------------------------------------------------------------------------- /src/components/custom/MapComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/custom/MapComponent.tsx -------------------------------------------------------------------------------- /src/components/custom/MapDemSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/custom/MapDemSelector.tsx -------------------------------------------------------------------------------- /src/components/custom/MapLayerSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/custom/MapLayerSelector.tsx -------------------------------------------------------------------------------- /src/components/custom/MapMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/custom/MapMenu.tsx -------------------------------------------------------------------------------- /src/components/custom/MapSelectedLayerList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/custom/MapSelectedLayerList.tsx -------------------------------------------------------------------------------- /src/components/custom/MapStyleSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/custom/MapStyleSelector.tsx -------------------------------------------------------------------------------- /src/components/custom/MapStyleSelectorItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/custom/MapStyleSelectorItem.tsx -------------------------------------------------------------------------------- /src/components/custom/MapTestSupporter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/custom/MapTestSupporter.tsx -------------------------------------------------------------------------------- /src/components/custom/MapTintItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/custom/MapTintItem.tsx -------------------------------------------------------------------------------- /src/components/custom/MapTintList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/custom/MapTintList.tsx -------------------------------------------------------------------------------- /src/components/custom/PointCloudOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/custom/PointCloudOverlay.tsx -------------------------------------------------------------------------------- /src/components/custom/SearchInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/custom/SearchInput.tsx -------------------------------------------------------------------------------- /src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /src/components/ui/action-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/action-bar.tsx -------------------------------------------------------------------------------- /src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/blockquote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/blockquote.tsx -------------------------------------------------------------------------------- /src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /src/components/ui/checkbox-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/checkbox-card.tsx -------------------------------------------------------------------------------- /src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/components/ui/clipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/clipboard.tsx -------------------------------------------------------------------------------- /src/components/ui/close-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/close-button.tsx -------------------------------------------------------------------------------- /src/components/ui/color-mode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/color-mode.tsx -------------------------------------------------------------------------------- /src/components/ui/color-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/color-picker.tsx -------------------------------------------------------------------------------- /src/components/ui/data-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/data-list.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /src/components/ui/empty-state.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/empty-state.tsx -------------------------------------------------------------------------------- /src/components/ui/field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/field.tsx -------------------------------------------------------------------------------- /src/components/ui/file-upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/file-upload.tsx -------------------------------------------------------------------------------- /src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /src/components/ui/input-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/input-group.tsx -------------------------------------------------------------------------------- /src/components/ui/link-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/link-button.tsx -------------------------------------------------------------------------------- /src/components/ui/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/menu.tsx -------------------------------------------------------------------------------- /src/components/ui/native-select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/native-select.tsx -------------------------------------------------------------------------------- /src/components/ui/number-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/number-input.tsx -------------------------------------------------------------------------------- /src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /src/components/ui/password-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/password-input.tsx -------------------------------------------------------------------------------- /src/components/ui/pin-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/pin-input.tsx -------------------------------------------------------------------------------- /src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/components/ui/progress-circle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/progress-circle.tsx -------------------------------------------------------------------------------- /src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /src/components/ui/prose.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/prose.tsx -------------------------------------------------------------------------------- /src/components/ui/provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/provider.tsx -------------------------------------------------------------------------------- /src/components/ui/qr-code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/qr-code.tsx -------------------------------------------------------------------------------- /src/components/ui/radio-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/radio-card.tsx -------------------------------------------------------------------------------- /src/components/ui/radio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/radio.tsx -------------------------------------------------------------------------------- /src/components/ui/rating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/rating.tsx -------------------------------------------------------------------------------- /src/components/ui/segmented-control.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/segmented-control.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /src/components/ui/stat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/stat.tsx -------------------------------------------------------------------------------- /src/components/ui/status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/status.tsx -------------------------------------------------------------------------------- /src/components/ui/stepper-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/stepper-input.tsx -------------------------------------------------------------------------------- /src/components/ui/steps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/steps.tsx -------------------------------------------------------------------------------- /src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/components/ui/tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/tag.tsx -------------------------------------------------------------------------------- /src/components/ui/timeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/timeline.tsx -------------------------------------------------------------------------------- /src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle-tip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/toggle-tip.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/hooks/useDem2ReliefProtocol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/hooks/useDem2ReliefProtocol.ts -------------------------------------------------------------------------------- /src/hooks/useLayers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/hooks/useLayers.ts -------------------------------------------------------------------------------- /src/hooks/useMapDems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/hooks/useMapDems.ts -------------------------------------------------------------------------------- /src/hooks/useMapStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/hooks/useMapStyles.ts -------------------------------------------------------------------------------- /src/hooks/usePointCloud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/hooks/usePointCloud.ts -------------------------------------------------------------------------------- /src/hooks/useSearchSuggestion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/hooks/useSearchSuggestion.ts -------------------------------------------------------------------------------- /src/lib/dem2ReliefProtocol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/lib/dem2ReliefProtocol.ts -------------------------------------------------------------------------------- /src/lib/getAddressFromGeojsonTile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/lib/getAddressFromGeojsonTile.ts -------------------------------------------------------------------------------- /src/lib/getDemInfoFromDemTile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/lib/getDemInfoFromDemTile.ts -------------------------------------------------------------------------------- /src/lib/getErrorMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/lib/getErrorMessage.ts -------------------------------------------------------------------------------- /src/lib/getLayerSets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/lib/getLayerSets.ts -------------------------------------------------------------------------------- /src/lib/getUTMPointNameFromPoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/lib/getUTMPointNameFromPoint.ts -------------------------------------------------------------------------------- /src/lib/mesh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/lib/mesh.ts -------------------------------------------------------------------------------- /src/lib/muni.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/lib/muni.ts -------------------------------------------------------------------------------- /src/lib/pickPalette.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/lib/pickPalette.ts -------------------------------------------------------------------------------- /src/lib/protocolUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/src/lib/protocolUtils.ts -------------------------------------------------------------------------------- /tests/e2e/CenterInfoPopover.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/e2e/CenterInfoPopover.spec.ts -------------------------------------------------------------------------------- /tests/e2e/MapComponent.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/e2e/MapComponent.spec.ts -------------------------------------------------------------------------------- /tests/e2e/MapDemSelector.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/e2e/MapDemSelector.spec.ts -------------------------------------------------------------------------------- /tests/e2e/MapLayerSelector.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/e2e/MapLayerSelector.spec.ts -------------------------------------------------------------------------------- /tests/e2e/MapSelectedLayerList.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/e2e/MapSelectedLayerList.spec.ts -------------------------------------------------------------------------------- /tests/e2e/map.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/e2e/map.spec.ts -------------------------------------------------------------------------------- /tests/helper/mask.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/helper/mask.css -------------------------------------------------------------------------------- /tests/helper/testExpansion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/helper/testExpansion.ts -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/メニューの初期状態のデザインが変更されていない-1-vrt-chromium-dark-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/メニューの初期状態のデザインが変更されていない-1-vrt-chromium-dark-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/メニューの初期状態のデザインが変更されていない-1-vrt-chromium-light-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/メニューの初期状態のデザインが変更されていない-1-vrt-chromium-light-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/メニューの初期状態のデザインが変更されていない-1-vrt-mobile-safari-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/メニューの初期状態のデザインが変更されていない-1-vrt-mobile-safari-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/メニューの初期状態のデザインが変更されていない-2-vrt-chromium-dark-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/メニューの初期状態のデザインが変更されていない-2-vrt-chromium-dark-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/メニューの初期状態のデザインが変更されていない-2-vrt-chromium-light-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/メニューの初期状態のデザインが変更されていない-2-vrt-chromium-light-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/メニューの初期状態のデザインが変更されていない-2-vrt-mobile-safari-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/メニューの初期状態のデザインが変更されていない-2-vrt-mobile-safari-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/メニューを閉じた時のデザインが変更されていない-1-vrt-chromium-dark-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/メニューを閉じた時のデザインが変更されていない-1-vrt-chromium-dark-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/メニューを閉じた時のデザインが変更されていない-1-vrt-chromium-light-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/メニューを閉じた時のデザインが変更されていない-1-vrt-chromium-light-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/メニューを閉じた時のデザインが変更されていない-1-vrt-mobile-safari-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/メニューを閉じた時のデザインが変更されていない-1-vrt-mobile-safari-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/レイヤーのドラック可能アイテムのデザインが変更されていない-1-vrt-chromium-dark-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/レイヤーのドラック可能アイテムのデザインが変更されていない-1-vrt-chromium-dark-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/レイヤーのドラック可能アイテムのデザインが変更されていない-1-vrt-chromium-light-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/レイヤーのドラック可能アイテムのデザインが変更されていない-1-vrt-chromium-light-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/レイヤーのドラック可能アイテムのデザインが変更されていない-1-vrt-mobile-safari-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/レイヤーのドラック可能アイテムのデザインが変更されていない-1-vrt-mobile-safari-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/レイヤー選択箇所のディレクトリ展開時のデザインが変更されていない-1-vrt-chromium-dark-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/レイヤー選択箇所のディレクトリ展開時のデザインが変更されていない-1-vrt-chromium-dark-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/レイヤー選択箇所のディレクトリ展開時のデザインが変更されていない-1-vrt-chromium-light-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/レイヤー選択箇所のディレクトリ展開時のデザインが変更されていない-1-vrt-chromium-light-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/レイヤー選択箇所のディレクトリ展開時のデザインが変更されていない-1-vrt-mobile-safari-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/レイヤー選択箇所のディレクトリ展開時のデザインが変更されていない-1-vrt-mobile-safari-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/初期表示時のデザインが変更されていない-1-vrt-chromium-dark-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/初期表示時のデザインが変更されていない-1-vrt-chromium-dark-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/初期表示時のデザインが変更されていない-1-vrt-chromium-light-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/初期表示時のデザインが変更されていない-1-vrt-chromium-light-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/初期表示時のデザインが変更されていない-1-vrt-mobile-safari-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/初期表示時のデザインが変更されていない-1-vrt-mobile-safari-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/情報ポップオーバーのデザインが変更されていない-1-vrt-chromium-dark-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/情報ポップオーバーのデザインが変更されていない-1-vrt-chromium-dark-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/情報ポップオーバーのデザインが変更されていない-1-vrt-chromium-light-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/情報ポップオーバーのデザインが変更されていない-1-vrt-chromium-light-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/情報ポップオーバーのデザインが変更されていない-1-vrt-mobile-safari-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/情報ポップオーバーのデザインが変更されていない-1-vrt-mobile-safari-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/検索ボックスのサジェスト表示時のデザインが変更されていない-1-vrt-chromium-dark-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/検索ボックスのサジェスト表示時のデザインが変更されていない-1-vrt-chromium-dark-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/検索ボックスのサジェスト表示時のデザインが変更されていない-1-vrt-chromium-light-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/検索ボックスのサジェスト表示時のデザインが変更されていない-1-vrt-chromium-light-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/検索ボックスのサジェスト表示時のデザインが変更されていない-1-vrt-mobile-safari-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/検索ボックスのサジェスト表示時のデザインが変更されていない-1-vrt-mobile-safari-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/立体-陰影-段彩-の表示を有効にした状態のデザインが変更されていない-1-vrt-chromium-dark-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/立体-陰影-段彩-の表示を有効にした状態のデザインが変更されていない-1-vrt-chromium-dark-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/立体-陰影-段彩-の表示を有効にした状態のデザインが変更されていない-1-vrt-chromium-light-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/立体-陰影-段彩-の表示を有効にした状態のデザインが変更されていない-1-vrt-chromium-light-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/立体-陰影-段彩-の表示を有効にした状態のデザインが変更されていない-1-vrt-mobile-safari-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/立体-陰影-段彩-の表示を有効にした状態のデザインが変更されていない-1-vrt-mobile-safari-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/色彩編集モーダルのデザインが変更されていない-1-vrt-chromium-dark-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/色彩編集モーダルのデザインが変更されていない-1-vrt-chromium-dark-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/色彩編集モーダルのデザインが変更されていない-1-vrt-chromium-light-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/色彩編集モーダルのデザインが変更されていない-1-vrt-chromium-light-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/色彩編集モーダルのデザインが変更されていない-1-vrt-mobile-safari-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/色彩編集モーダルのデザインが変更されていない-1-vrt-mobile-safari-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/色彩設定のデザインが変更されていない-1-vrt-chromium-dark-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/色彩設定のデザインが変更されていない-1-vrt-chromium-dark-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/色彩設定のデザインが変更されていない-1-vrt-chromium-light-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/色彩設定のデザインが変更されていない-1-vrt-chromium-light-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/色彩設定のデザインが変更されていない-1-vrt-mobile-safari-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/色彩設定のデザインが変更されていない-1-vrt-mobile-safari-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/色彩追加モーダルのデザインが変更されていない-1-vrt-chromium-dark-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/色彩追加モーダルのデザインが変更されていない-1-vrt-chromium-dark-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/色彩追加モーダルのデザインが変更されていない-1-vrt-chromium-light-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/色彩追加モーダルのデザインが変更されていない-1-vrt-chromium-light-linux.png -------------------------------------------------------------------------------- /tests/vrt/map.spec.ts-snapshots/色彩追加モーダルのデザインが変更されていない-1-vrt-mobile-safari-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tests/vrt/map.spec.ts-snapshots/色彩追加モーダルのデザインが変更されていない-1-vrt-mobile-safari-linux.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsi-cyberjapan/3dpc-3dtiles/HEAD/tsconfig.json --------------------------------------------------------------------------------