package.src.data.bucket.heatmap_bucket.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 CircleBucket from './circle_bucket';
import {register} from '../../util/web_worker_transfer';
import type HeatmapStyleLayer from '../../style/style_layer/heatmap_style_layer';
class HeatmapBucket extends CircleBucket {
// Needed for flow to accept omit: ['layers'] below, due to
// https://github.com/facebook/flow/issues/4262
layers: Array;
}
register('HeatmapBucket', HeatmapBucket, {omit: ['layers']});
export default HeatmapBucket;