mirror of https://github.com/CesiumGS/cesium.git
20 lines
530 B
JavaScript
20 lines
530 B
JavaScript
import { Cartographic, createWorldTerrainAsync, sampleTerrain } from "cesium";
|
|
import assert from "node:assert";
|
|
|
|
// NodeJS smoke screen test
|
|
|
|
async function test() {
|
|
const provider = await createWorldTerrainAsync();
|
|
const results = await sampleTerrain(provider, 11, [
|
|
Cartographic.fromDegrees(86.925145, 27.988257),
|
|
Cartographic.fromDegrees(87.0, 28.0),
|
|
]);
|
|
assert(results[0].height > 5000);
|
|
assert(results[0].height < 10000);
|
|
assert(results[1].height > 5000);
|
|
assert(results[1].height < 10000);
|
|
}
|
|
|
|
test()
|
|
|