package.src.style.style_layer.background_style_layer.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mapbox-gl Show documentation
Show all versions of mapbox-gl Show documentation
A WebGL interactive maps library
The newest version!
// @flow
import StyleLayer from '../style_layer';
import properties from './background_style_layer_properties';
import {Transitionable, Transitioning, PossiblyEvaluated} from '../properties';
import type {PaintProps} from './background_style_layer_properties';
import type {LayerSpecification} from '../../style-spec/types';
class BackgroundStyleLayer extends StyleLayer {
_transitionablePaint: Transitionable;
_transitioningPaint: Transitioning;
paint: PossiblyEvaluated;
constructor(layer: LayerSpecification) {
super(layer, properties);
}
}
export default BackgroundStyleLayer;