leaflet-heat-es
v0.2.1
Published
> A modular heatmap plugin for Leaflet. Modified from [`leaflet.heat`](https://github.com/Leaflet/Leaflet.heat)
Downloads
93
Readme
leaflet-heat-es
A modular heatmap plugin for Leaflet. Modified from
leaflet.heat
Quick Start
import { heatLayer } from 'leaflet-heat-es';
const map = #leaflet map instance#;
const points = [
[50.5, 30.5, 0.2], // lat, lng, intensity
[50.6, 30.4, 0.5],
...
];
const heat = heatLayer(points);
heat.addTo(map);