Changes
Page history
Mise à jour de Get Started
authored
Jun 27, 2024
by
Julien LEBLOND
Hide whitespace changes
Inline
Side-by-side
Get-Started.md
View page @
47e4b7fd
...
...
@@ -51,8 +51,9 @@ The [cesium sandbox](https://sandcastle.cesium.com) is a web interface that allo
Here is a basic load of a CZML file in cesiumJS :
```
javascript
const
czml
=
"
ENTER YOUR CZML HERE
"
;
const
viewer
=
new
Viewer
(
"
cesiumContainer
"
);
const
czmlDataSource
=
Cesium
.
CzmlDataSource
.
load
(
"
PATH
);
const
czmlDataSource
=
Cesium
.
CzmlDataSource
.
load
(
czml
);
viewer
.
dataSources
.
add
(
czmlDataSource
);
viewer
.
scene
.
globe
.
enableLighting
=
true
;
```
...
...
...
...