Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(server, web): remove ArcGIS terrain [VIZ-1424] #1525

Merged
merged 2 commits into from
Mar 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions server/pkg/builtin/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,6 @@ extensions:
choices:
- key: cesium
label: Cesium World Terrain
- key: arcgis
label: ArcGIS Terrain
- key: cesiumion
label: Cesium Ion
- id: terrainCesiumIonAsset
Expand Down
1 change: 0 additions & 1 deletion server/pkg/builtin/manifest_ja.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ extensions:
description: 地形の種類を指定します。
choices:
cesium: Cesium World Terrain
arcgis: ArcGIS Terrain
cesiumion: Cesium Ion
terrainCesiumIonAsset:
title: Cesium Ion アセットID
Expand Down
4 changes: 2 additions & 2 deletions web/src/beta/types/sceneProperty.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

type TerrainProperty = {
terrain?: boolean;
terrainType?: "cesium" | "arcgis" | "cesiumion"; // default: cesium
terrainType?: "cesium" | "cesiumion"; // default: cesium
terrainCesiumIonAsset?: string;
terrainCesiumIonAccessToken?: string;
terrainCesiumIonUrl?: string;
Expand Down Expand Up @@ -110,7 +110,7 @@ type LegacySceneProperty = {
}[];
terrain?: {
terrain?: boolean;
terrainType?: "cesium" | "arcgis" | "cesiumion"; // default: cesium
terrainType?: "cesium" | "cesiumion"; // default: cesium
terrainExaggeration?: number; // default: 1
terrainExaggerationRelativeHeight?: number; // default: 0
depthTestAgainstTerrain?: boolean;
Expand Down
Loading