log
This commit is contained in:
parent
f4bbb14ab0
commit
c51543e6d0
@ -40,6 +40,8 @@ export default class OrthoImageryManager {
|
|||||||
|
|
||||||
// ✅ 使用全局亮度和透明度,保证新图生效
|
// ✅ 使用全局亮度和透明度,保证新图生效
|
||||||
layer.brightness = brightness ? brightness : this.globalBrightness;
|
layer.brightness = brightness ? brightness : this.globalBrightness;
|
||||||
|
console.log(layer.brightness, '新增图片时的亮度值');
|
||||||
|
|
||||||
layer.alpha = this.globalAlpha;
|
layer.alpha = this.globalAlpha;
|
||||||
|
|
||||||
this.layerMap.set(key, layer);
|
this.layerMap.set(key, layer);
|
||||||
@ -56,6 +58,7 @@ export default class OrthoImageryManager {
|
|||||||
this.layerMap.forEach(layer => {
|
this.layerMap.forEach(layer => {
|
||||||
layer.brightness = value;
|
layer.brightness = value;
|
||||||
});
|
});
|
||||||
|
console.log(value, '统一修改图片时的亮度值');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user