Skip to content

Commit 19659cf

Browse files
author
Jeshurun Hembd
committed
Merge remote-tracking branch 'origin' into cesium.com
2 parents d2d7dea + 82e59ed commit 19659cf

File tree

75 files changed

+1710
-817
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+1710
-817
lines changed

.idea/prettier.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.markdownlint.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,8 @@
1010
},
1111
"no-inline-html": {
1212
"allowed_elements": ["details", "summary"]
13+
},
14+
"blanks-around-fences": {
15+
"list_items": false
1316
}
1417
}

.markdownlintignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@
22
/ThirdParty
33
/Tools/**
44

5-
CHANGES.md
6-
LICENSE.md
5+
LICENSE.md

.vscode/cspell.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,16 @@
5656
"dijit",
5757
"DONT",
5858
"ecef",
59+
"Eigen",
60+
"emscripten",
5961
"EPSG",
6062
"fxaa",
63+
"gdal",
6164
"glsl",
6265
"gltf",
6366
"iframes",
6467
"iife",
68+
"Khronos",
6569
"lerp",
6670
"Lilli",
6771
"maki",
@@ -71,6 +75,7 @@
7175
"mipmaps",
7276
"msaa",
7377
"noaa",
78+
"Occludee",
7479
"Occluder",
7580
"occluders",
7681
"octree",
@@ -82,7 +87,10 @@
8287
"pnts",
8388
"quantizations",
8489
"reproject",
90+
"slerp",
8591
"tada",
92+
"teme",
93+
"tipsify",
8694
"topo",
8795
"topojson",
8896
"Transitioner",
@@ -97,6 +105,7 @@
97105
"voxel",
98106
"VVLH",
99107
"WEBG",
108+
"WMTS",
100109
"xdescribe"
101110
]
102111
}

Apps/Sandcastle/gallery/iTwin Feature Service.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -63,17 +63,17 @@
6363
viewer.scene.camera.flyTo(birdsEyeView);
6464

6565
// Load feature service geojson files
66-
const points = await Cesium.ITwinData.createDataSourceForRealityDataId(
66+
const points = await Cesium.ITwinData.loadGeospatialFeatures(
6767
iTwinId,
68-
"57b975f6-fd92-42ba-8014-79911ed606d1",
68+
"2380dc1b-1dac-4709-aa5c-f6cb38c4e9f5",
6969
);
70-
const lines = await Cesium.ITwinData.createDataSourceForRealityDataId(
70+
const lines = await Cesium.ITwinData.loadGeospatialFeatures(
7171
iTwinId,
72-
"1099c53f-c568-48a3-a57c-0230a6f37229",
72+
"613d2310-4d01-43b7-bc92-873a2ca4a4a0",
7373
);
74-
const areas = await Cesium.ITwinData.createDataSourceForRealityDataId(
74+
const areas = await Cesium.ITwinData.loadGeospatialFeatures(
7575
iTwinId,
76-
"21eaf0d0-ab90-400f-97cf-adc455b29a78",
76+
"93e7ef51-5210-49f2-92a3-c7f6685e102f",
7777
);
7878

7979
// Add some styling to the lines and points to differentiate types
@@ -86,7 +86,7 @@
8686
Arrow_Marking: { color: Cesium.Color.YELLOW, icon: "car" },
8787
Road_Sign: { color: Cesium.Color.ORANGE, icon: "triangle" },
8888
};
89-
const type = entity.properties.Type?.getValue();
89+
const type = entity.properties.type?.getValue();
9090
if (Cesium.defined(type) && Cesium.defined(styleByType[type])) {
9191
const { color, icon } = styleByType[type];
9292
const canvas = await pinBuilder.fromMakiIconId(icon, color, 48);
@@ -103,7 +103,7 @@
103103
Turning_pocket: Cesium.Color.DEEPPINK,
104104
Yellow_Box: Cesium.Color.GOLD,
105105
};
106-
const type = entity.properties.Type?.getValue();
106+
const type = entity.properties.type?.getValue();
107107
if (Cesium.defined(type) && Cesium.defined(lineColorsByType[type])) {
108108
entity.polyline.material = lineColorsByType[type];
109109
}

CHANGES.md

Lines changed: 594 additions & 563 deletions
Large diffs are not rendered by default.

CONTRIBUTORS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -419,3 +419,7 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for details on how to contribute to Cesiu
419419
- [Kirn Kim](https://github.com/squrki)
420420
- [Emanuele Mastaglia](https://github.com/Masty88)
421421
- [Connor Manning](https://github.com/connormanning)
422+
- [Isaac Young](https://github.com/ibreathebsb)
423+
- [Nick Crews](https://github.com/NickCrews)
424+
- [胡文康](https://github.com/XiaoHu1994)
425+
- [Parth Petkar](https://github.com/parthpetkar)
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# ExternalInMultipleContents
2+
3+
A tileset that was created as a regression test for
4+
https://github.com/CesiumGS/cesium/issues/11960
5+
6+
It contains a single root node with 4 contents:
7+
8+
- The first one is a GLB of a red unit cube
9+
- The remaining three are external tilesets, containing
10+
a green, blue, and white unit cube, respectively
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)