fires = ({
source:{
type: 'vector',
tiles: [`https://tiles.globalforestwatch.org/nasa_viirs_fire_alerts/latest/dynamic/{z}/{x}/{y}.pbf?high_confidence_only=true`]
},
layer: {
id: 'firesLayer',
type: 'circle',
source: 'fires',
'source-layer': 'nasa_viirs_fire_alerts',
paint: {
'circle-color': 'rgba(250, 237, 200, .3)',
'circle-stroke-color': 'rgba(237, 143, 81, .1)',
'circle-blur': 1.5,
'circle-radius': [
'interpolate',
['exponential',2],
['zoom'],
0, 3,
18, 10000
],
'circle-stroke-width': [
'interpolate',
['exponential',2],
['zoom'],
0, .05,
18, 100
],
}
}
})