UNPKG

maplibre-gl

Version:

BSD licensed community fork of mapbox-gl, a WebGL interactive maps library

18 lines (13 loc) 710 B
import {StyleLayer} from '../style_layer'; import properties, {RasterPaintPropsPossiblyEvaluated} from './raster_style_layer_properties.g'; import {Transitionable, Transitioning, PossiblyEvaluated} from '../properties'; import type {RasterPaintProps} from './raster_style_layer_properties.g'; import type {LayerSpecification} from '@maplibre/maplibre-gl-style-spec'; export class RasterStyleLayer extends StyleLayer { _transitionablePaint: Transitionable<RasterPaintProps>; _transitioningPaint: Transitioning<RasterPaintProps>; paint: PossiblyEvaluated<RasterPaintProps, RasterPaintPropsPossiblyEvaluated>; constructor(layer: LayerSpecification) { super(layer, properties); } }