mapbox-gl
Version:
A WebGL interactive maps library
30 lines (21 loc) • 890 B
JavaScript
// @flow
import StyleLayer from '../style_layer.js';
import properties from './hillshade_style_layer_properties.js';
import {Transitionable, Transitioning, PossiblyEvaluated} from '../properties.js';
import type {PaintProps} from './hillshade_style_layer_properties.js';
import type {LayerSpecification} from '../../style-spec/types.js';
class HillshadeStyleLayer extends StyleLayer {
_transitionablePaint: Transitionable<PaintProps>;
_transitioningPaint: Transitioning<PaintProps>;
paint: PossiblyEvaluated<PaintProps>;
constructor(layer: LayerSpecification) {
super(layer, properties);
}
hasOffscreenPass(): boolean {
return this.paint.get('hillshade-exaggeration') !== 0 && this.visibility !== 'none';
}
getProgramIds(): Array<string> {
return ['hillshade', 'hillshadePrepare'];
}
}
export default HillshadeStyleLayer;