InterpolateHeatmapLayer icon indicating copy to clipboard operation
InterpolateHeatmapLayer copied to clipboard

EXT_color_buffer_float not supported

Open Lewitje opened this issue 6 months ago • 5 comments

Not 100% what I'm doing wrong here, I get this error after the map has loaded:

Uncaught WebGL extension EXT_color_buffer_float not supported

I think I followed the documentation correctly I checked my browser support and it does support that extension

A sample of my code: ` const map = new mapboxgl.Map({ container: this.$refs.map, style: 'mapbox://styles/mapbox/light-v10', zoom: 7, pitch: 0, center: [5, 51] });

map.on('load', () => { const points = this.locations.map((o) => ({ lat: o.latitude, lon: o.longitude, val: o.complexityScore }))

const layer = InterpolateHeatmapLayer({
    layerId: 'Locations',
    points,
    averageThreshold: 1,
    minValue: -10,
    maxValue: 10,
    pointRadius: 100
})

map.addLayer(layer)

}); `

Any idea what could be happening?

Lewitje avatar Aug 13 '24 09:08 Lewitje