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

3d tiles height reference #11604

Merged
merged 24 commits into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
8e271f1
Add height references for 3D tiles
ggetz Nov 3, 2023
acf76ce
Merge branch 'tileset-get-height' into 3d-tiles-height-reference
ggetz Nov 3, 2023
38b6699
Merge branch 'tileset-get-height' into 3d-tiles-height-reference
ggetz Dec 7, 2023
3f35d9a
Tweak API, fix unit tests
ggetz Dec 14, 2023
4b1aaff
Merge branch 'tileset-get-height' into 3d-tiles-height-reference
ggetz Dec 14, 2023
4308e10
Update Sandcastle
ggetz Dec 14, 2023
6d7f114
Update Sandcastle
ggetz Dec 14, 2023
3e7adc9
Merge branch '3d-tiles-height-reference' of github.com:AnalyticalGrap…
ggetz Dec 14, 2023
8c645fd
Merge branch 'tileset-get-height' into 3d-tiles-height-reference
ggetz Jan 4, 2024
36f3e7a
Update model specs
ggetz Jan 4, 2024
4fd8c5b
Error -> DevloperError
ggetz Jan 4, 2024
20fd2be
Merge branch 'main' into 3d-tiles-height-reference
ggetz Jan 12, 2024
fe87380
Fix performance issue
ggetz Jan 16, 2024
d0c2721
PR feedback
ggetz Jan 16, 2024
9b95eac
Update packages/engine/Source/Scene/Cesium3DTileset.js
ggetz Jan 17, 2024
0d5607f
Update packages/engine/Source/Scene/Scene.js
ggetz Jan 17, 2024
9591d82
Fix comments
ggetz Jan 17, 2024
bcb793a
Fix crash when transitioning
ggetz Jan 17, 2024
d489a76
Update packages/engine/Source/Scene/Cesium3DTileset.js
ggetz Jan 17, 2024
0f819cf
Cleanup
ggetz Jan 19, 2024
cb0ec02
Merge branch '3d-tiles-height-reference' of github.com:AnalyticalGrap…
ggetz Jan 19, 2024
11251dd
Merge branch 'main' into 3d-tiles-height-reference
ggetz Jan 19, 2024
dd3f773
Merge branch 'main' into 3d-tiles-height-reference
ggetz Jan 29, 2024
6b5d19a
Fix spec
ggetz Jan 31, 2024
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
51 changes: 31 additions & 20 deletions Apps/SampleData/ClampToGround.czml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"clock": {
"interval": "2018-07-19T15:18:00Z/2018-07-19T15:18:30Z",
"currentTime": "2018-07-19T15:18:00Z",
"multiplier": 5,
"multiplier": 2,
"range": "LOOP_STOP",
"step": "SYSTEM_CLOCK_MULTIPLIER"
}
Expand All @@ -19,14 +19,22 @@
"interpolationAlgorithm": "LINEAR",
"forwardExtrapolationType": "HOLD",
"cartesian": [
"2018-07-19T15:18:00Z",
1216348.1632364073,
-4736348.958775471,
4081284.5528982095,
"2018-07-19T15:18:00Z",
1216327.3893347275,
-4736164.778028102,
4081507.5209477833,
"2018-07-19T15:18:10Z",
1216369.543258349,
-4736201.237448179,
4081447.3732212726,
"2018-07-19T15:18:20Z",
1216434.7507773656,
-4736241.372142024,
4081386.1802605274,
"2018-07-19T15:18:30Z",
1216369.1229444197,
-4736377.467107148,
4081240.888485707
1216525.7792628652,
-4736271.927759278,
4081319.744558958
]
},
"orientation": {
Expand All @@ -43,26 +51,29 @@
"polyline": {
"positions": {
"cartesian": [
1216348.1632364073,
-4736348.958775471,
4081284.5528982095,
1216369.1229444197,
-4736377.467107148,
4081240.888485707
1216327.3893347275,
-4736164.778028102,
4081507.5209477833,
1216369.543258349,
-4736201.237448179,
4081447.3732212726,
1216434.7507773656,
-4736241.372142024,
4081386.1802605274,
1216525.7792628652,
-4736271.927759278,
4081319.744558958
]
},
"material": {
"polylineOutline": {
"color": {
"rgba": [255, 255, 0, 255]
"rgba": [100, 149, 237, 140]
},
"outlineColor": {
"rgba": [0, 0, 0, 255]
},
"outlineWidth": 2
"outlineWidth": 0
}
},
"width": 10,
"width": 12,
"clampToGround": true
}
}
Expand Down
Loading