Visualize population density
Use a variable binding expression to calculate and display population density.
In this example, we use the population and area variables to create a choropleth map that visually represents the population density.
NPM module setup
npm install --save @maptiler/sdk
import { Map, MapStyle, config } from '@maptiler/sdk';
import '@maptiler/sdk/dist/maptiler-sdk.css';
config.apiKey = 'YOUR_MAPTILER_API_KEY_HERE';
const map = new Map({
container: 'map', // container id
style: MapStyle.STREETS, // stylesheet location
center: [30.0222, -1.9596], // starting position [lng, lat]
zoom: 7 // starting zoom
});
map.on('load', function () {
map.addSource('rwanda-provinces', {
'type': 'geojson',
'data':
'https://docs.maptiler.com/sdk-js/assets/rwanda-provinces.geojson'
});
map.addLayer({
'id': 'rwanda-provinces',
'type': 'fill',
'source': 'rwanda-provinces',
'layout': {},
'paint': {
'fill-color': [
'let',
'density',
['/', ['get', 'population'], ['get', 'sq-km']],
[
'interpolate',
['linear'],
['zoom'],
8,
[
'interpolate',
['linear'],
['var', 'density'],
274,
['to-color', '#edf8e9'],
1551,
['to-color', '#006d2c']
],
10,
[
'interpolate',
['linear'],
['var', 'density'],
274,
['to-color', '#eff3ff'],
1551,
['to-color', '#08519c']
]
]
],
'fill-opacity': 0.7
}
});
});
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="robots" content="noindex">
<title>Visualize population density | NPM example</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div id="map"></div>
<script type="module" src="./main.js"></script>
</body>
</html>
body {margin: 0; padding: 0;}
#map {position: absolute; top: 0; bottom: 0; width: 100%;}
Related examples
Interactive choropleth map
ExamplesUse events and feature states to create a interactive choropleth map.