Heatmap layer weight (heatmap helper)

This example shows how to add a heatmap layer into a map by utilizing a property as the weight. To accomplish this, the heatmap layer helper is employed. If you wish to access the earthquake sample data.

Incorporating a property as the weight MUST be paired with a ramping description. By configuring these options, earthquakes with magnitudes close to zero will be displayed with reduced intensity, while earthquakes with magnitudes of 6 or higher will be portrayed at their maximum intensity.

NPM module setup


npm install --save @maptiler/sdk
import { Map, MapStyle, config, helpers } from '@maptiler/sdk';
import '@maptiler/sdk/dist/maptiler-sdk.css';

config.apiKey = 'YOUR_MAPTILER_API_KEY_HERE';
const map = new Map({
    container: 'map',
    zoom: 10.82,
    center: [-112.5033, 46.8634],
    style: MapStyle.DATAVIZ.LIGHT
});

map.on('load', async function () {
  await helpers.addHeatmap(map, {
    data: 'YOUR_MAPTILER_DATASET_ID_HERE',
    property: "mag", // use the earthquake magnitude to add weight to each point
     weight: [
      {propertyValue: 0, value: 0},
      {propertyValue: 6, value: 1},
    ],
  });
});
Heatmap layer (heatmap helper)

Heatmap layer (heatmap helper)

Examples

Quickly add a heatmap layer using the heatmap helper.

Create a heatmap layer

Create a heatmap layer

Examples

Visualize point data frequency using a custom heatmap layer.

Heatmap layer custom radius (heatmap helper)

Heatmap layer custom radius (heatmap helper)

Examples

Implement custom zoom-ramping radius in heatmap layers.

Point layer cluster (point helper)

Point layer cluster (point helper)

Examples

Add clustered point layer using MapTiler point helper.

Was this helpful?