@kq_npm/client3d_webgl_vue 4.5.41 → 4.5.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/clientPrint/index.js +8594 -159
- package/fixedzoomout/index.js +7649 -23
- package/flight/index.js +54 -6
- package/flight/style/flight.css +1 -1
- package/index.js +8849 -414
- package/package.json +1 -1
- package/sceneapp/index.js +8595 -160
- package/sceneview/index.js +8594 -159
- package/slopeaspectanalysis/index.js +1 -2
- package/style.css +1 -1
- package/webgl.es.js +580153 -0
- package/windyslicing/index.js +411 -80
- package/windyslicing/style/windyslicing.css +1 -1
- package/componentsConfig.json +0 -1
|
@@ -268,9 +268,8 @@ class SlopeAspectAnalysisViewModel {
|
|
|
268
268
|
colorImage: this.getImagePath(viewModel.colorImage),
|
|
269
269
|
};
|
|
270
270
|
this._globaOptions.viewer.scene.globe.depthTestAgainstTerrain = true; //开启深度检测
|
|
271
|
-
this._globaOptions.viewer.scene.globe.enableLighting = true;
|
|
271
|
+
// this._globaOptions.viewer.scene.globe.enableLighting = true;
|
|
272
272
|
this._globaOptions.viewer.scene.logarithmicDepthBuffer = true;
|
|
273
|
-
this._globaOptions.viewer.scene.globe.depthTestAgainstTerrain = true;
|
|
274
273
|
this._globaOptions.viewer.scene.pickTranslucentDepth = true;
|
|
275
274
|
this._globaOptions.viewer.scene._environmentState.renderTranslucentDepthForPick = true;
|
|
276
275
|
|