Also apply layer opacity to decluttered content

This commit is contained in:
Andreas Hocevar
2021-02-06 15:21:39 +01:00
parent 4d5d80cb27
commit ebc3631341
3 changed files with 35 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

View File

@@ -0,0 +1,31 @@
import MVT from '../../../src/ol/format/MVT.js';
import Map from '../../../src/ol/Map.js';
import VectorTileLayer from '../../../src/ol/layer/VectorTile.js';
import VectorTileSource from '../../../src/ol/source/VectorTile.js';
import View from '../../../src/ol/View.js';
import {createXYZ} from '../../../src/ol/tilegrid.js';
new Map({
layers: [
new VectorTileLayer({
declutter: true,
opacity: 0.1,
source: new VectorTileSource({
format: new MVT(),
tileGrid: createXYZ(),
url: '/data/tiles/mapbox-streets-v6/{z}/{x}/{y}.vector.pbf',
transition: 0,
}),
}),
],
target: 'map',
view: new View({
center: [1825927.7316762917, 6143091.089223046],
zoom: 14,
}),
});
render({
message: 'Vector tile layer renders',
tolerance: 0.02,
});

View File

@@ -604,7 +604,9 @@ class CanvasVectorTileLayerRenderer extends CanvasTileLayerRenderer {
* @param {import("../../PluggableMap.js").FrameState} frameState Frame state.
*/
renderDeclutter(frameState) {
this.getLayer().getOpacity();
const context = this.context;
const alpha = context.globalAlpha;
context.globalAlpha = this.getLayer().getOpacity();
const viewHints = frameState.viewHints;
const hifi = !(
viewHints[ViewHint.ANIMATING] || viewHints[ViewHint.INTERACTING]
@@ -629,6 +631,7 @@ class CanvasVectorTileLayerRenderer extends CanvasTileLayerRenderer {
}
}
}
context.globalAlpha = alpha;
}
getTileRenderTransform(tile, frameState) {