LCCObject::setLodAutoLevelUp
Enables or disables the air-ground integrated LOD strategy.
When enabled, the LOD level is automatically adjusted based on the camera's distance from the LCC scene and the maxSplats value, optimizing the issue of excessively high LOD levels at long distances. Disabled by default.
Version Requirement
SDK v0.5.0+
Engine Support
Three.js / CesiumJS
API
LCCObject::setLodAutoLevelUp(value: boolean): void
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
value | boolean | Yes | false | true enables the auto LOD level-up strategy; false disables. |
Return Value
void
Usage Example
// Enable auto LOD level-up strategy
lccObject.setLodAutoLevelUp(true);
// Disable auto LOD level-up strategy
lccObject.setLodAutoLevelUp(false);
Notes
- This method can be called synchronously immediately after
LCCRender.load(). - Suitable for scenarios that frequently use overview perspectives.
Related APIs
LCCObject::setMaxSplats()LCCObject::getLodInfos()LCCObject::setStartLod()LCCObject::setEndLod()