html`
<!-- Flo.w map -->
<flow-map id="map1" map-style="fjord" center="-0.2,51.5,10" style="height: 350px;">
<!-- Air quality point data -->
<flow-map-data-source name="pop_polys" src="pop_density">
</flow-map-data-source>
<!-- Fill layer -->
<flow-map-layer name="population" type="fill" source="pop_polys">
fill-color: from-palette('RdYlGn', @pop_den, 0, 1000, 3000, 5000, 50000, true);
fill-outline-color: white;
</flow-map-layer>
<!-- Labels layer -->
<flow-map-layer name="labels" type="symbol" source="pop_polys" min-zoom=12>
text-field: @lsoa11nm;
text-color: white;
text-size: 10;
</flow-map-layer>
</flow-map>
`