styleFeature = [
(f, ctx, path, layerIndex) => {
ctx.lineWidth = f.properties.air / 20;
ctx.strokeStyle = "rgba(0,0,0,0.2)";
ctx.lineCap = "round";
},
(f, ctx, path, layerIndex) => {
path.pointRadius(f.properties.air / 10);
ctx.lineWidth = 1;
ctx.strokeStyle = "rgba(0,0,0,0.4)";
ctx.fillStyle = "rgba(0,0,0,0.4)";
}
]