leaflet-hexbin 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -0
- package/dist/index.es.js +94 -94
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/package.json +3 -3
package/README.md
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
# Leaflet hexbin plugin
|
2
|
+
|
3
|
+
[](https://www.npmjs.com/package/leaflet-hexbin)
|
4
|
+
|
5
|
+
A leaflet plugin to create hexagonal heatmaps using [d3-hexbin](https://github.com/d3/d3-hexbin).
|
6
|
+
This visualization is useful for displaying density of points on a map.
|
7
|
+
|
8
|
+
Inspired from [@asymmetrik/leaflet-d3](https://github.com/bluehalo/leaflet-d3)
|
9
|
+
|
10
|
+
**[Documentation and demo](https://lsdch.github.io/leaflet-hexbin/)**
|
package/dist/index.es.js
CHANGED
@@ -1,53 +1,53 @@
|
|
1
|
-
import * as
|
2
|
-
import { scaleLinear as y, dispatch as
|
1
|
+
import * as f from "d3";
|
2
|
+
import { scaleLinear as y, dispatch as R, select as L, extent as T } from "d3";
|
3
3
|
import { hexbin as O } from "d3-hexbin";
|
4
|
-
import * as
|
5
|
-
var
|
4
|
+
import * as c from "leaflet";
|
5
|
+
var v;
|
6
6
|
((r) => {
|
7
7
|
function t() {
|
8
8
|
return {
|
9
|
-
mouseover: function(
|
10
|
-
|
11
|
-
return
|
9
|
+
mouseover: function(u, n, s, p) {
|
10
|
+
f.select(u.parentElement).select("path.hexbin-hexagon").transition().duration(n.options.duration).attr("d", function(h) {
|
11
|
+
return n._hexLayout.hexagon(n.options.radius);
|
12
12
|
});
|
13
13
|
},
|
14
|
-
mouseout: function(
|
15
|
-
|
16
|
-
return
|
14
|
+
mouseout: function(u, n, s, p) {
|
15
|
+
f.select(u.parentElement).select("path.hexbin-hexagon").transition().duration(n.options.duration).attr("d", function(h) {
|
16
|
+
return n._hexLayout.hexagon(n._scale.radius(n._fn.radiusValue.call(n, h)));
|
17
17
|
});
|
18
18
|
}
|
19
19
|
};
|
20
20
|
}
|
21
21
|
r.resizeFill = t;
|
22
|
-
function
|
22
|
+
function i(u = 1.5) {
|
23
23
|
return {
|
24
|
-
mouseover: function(
|
25
|
-
|
26
|
-
return s._hexLayout.hexagon(s._scale.radius.range()[1] *
|
24
|
+
mouseover: function(n, s, p, d) {
|
25
|
+
f.select(n.parentElement).select("path.hexbin-hexagon").transition().duration(s.options.duration).attr("d", function() {
|
26
|
+
return s._hexLayout.hexagon(s._scale.radius.range()[1] * u);
|
27
27
|
});
|
28
28
|
},
|
29
|
-
mouseout: function(
|
30
|
-
|
29
|
+
mouseout: function(n, s, p, d) {
|
30
|
+
f.select(n.parentElement).select("path.hexbin-hexagon").transition().duration(s.options.duration).attr("d", (g) => s._hexLayout.hexagon(s._scale.radius(s._fn.radiusValue.call(s, g))));
|
31
31
|
}
|
32
32
|
};
|
33
33
|
}
|
34
|
-
r.resizeScale =
|
35
|
-
function
|
34
|
+
r.resizeScale = i;
|
35
|
+
function o(u = [l()]) {
|
36
36
|
return {
|
37
|
-
mouseover: function(
|
38
|
-
|
39
|
-
h.mouseover(
|
37
|
+
mouseover: function(n, s, p, d) {
|
38
|
+
u.forEach((h) => {
|
39
|
+
h.mouseover(n, s, p, d);
|
40
40
|
});
|
41
41
|
},
|
42
|
-
mouseout: function(
|
43
|
-
|
44
|
-
h.mouseout(
|
42
|
+
mouseout: function(n, s, p, d) {
|
43
|
+
u.forEach((h) => {
|
44
|
+
h.mouseout(n, s, p, d);
|
45
45
|
});
|
46
46
|
}
|
47
47
|
};
|
48
48
|
}
|
49
|
-
r.compound =
|
50
|
-
function
|
49
|
+
r.compound = o;
|
50
|
+
function l() {
|
51
51
|
return {
|
52
52
|
mouseover: function() {
|
53
53
|
},
|
@@ -55,13 +55,13 @@ var b;
|
|
55
55
|
}
|
56
56
|
};
|
57
57
|
}
|
58
|
-
r.none =
|
59
|
-
})(
|
60
|
-
const
|
58
|
+
r.none = l;
|
59
|
+
})(v || (v = {}));
|
60
|
+
const V = v;
|
61
61
|
function C(r) {
|
62
|
-
return r instanceof
|
62
|
+
return r instanceof c.LatLng || typeof r == "object" && "lat" in r && "lng" in r || Array.isArray(r) && r.length === 2 && typeof r[0] == "number" && typeof r[1] == "number";
|
63
63
|
}
|
64
|
-
class H extends
|
64
|
+
class H extends c.SVG {
|
65
65
|
constructor(t) {
|
66
66
|
super(), this.options = {
|
67
67
|
radius: 12,
|
@@ -77,23 +77,23 @@ class H extends l.SVG {
|
|
77
77
|
pointerEvents: "all",
|
78
78
|
// Handle parent default options
|
79
79
|
// ...L.SVG.prototype.options,
|
80
|
-
...
|
81
|
-
...
|
80
|
+
...c.Renderer.prototype.options,
|
81
|
+
...c.Layer.prototype.options
|
82
82
|
}, this._fn = {
|
83
|
-
lng: (
|
84
|
-
lat: (
|
85
|
-
colorValue: (
|
86
|
-
radiusValue: (
|
87
|
-
opacityValue: (
|
88
|
-
fill: (
|
89
|
-
const
|
90
|
-
return
|
83
|
+
lng: (i) => c.latLng(this._accessor(i)).lng,
|
84
|
+
lat: (i) => c.latLng(this._accessor(i)).lat,
|
85
|
+
colorValue: (i) => i.length,
|
86
|
+
radiusValue: (i) => i.length,
|
87
|
+
opacityValue: (i) => i.length,
|
88
|
+
fill: (i) => {
|
89
|
+
const o = this._fn.colorValue(i);
|
90
|
+
return o != null ? this._scale.color(o) : "none";
|
91
91
|
}
|
92
92
|
}, this._scale = {
|
93
93
|
color: y(),
|
94
94
|
radius: y(),
|
95
95
|
opacity: y()
|
96
|
-
}, this._dispatch =
|
96
|
+
}, this._dispatch = R("mouseover", "mouseout", "click"), this._hoverHandler = V.none(), this._hexLayout = O().radius(this.options.radius).x(({ point: [i, o] }) => i).y(({ point: [i, o] }) => o), this._data = Array(), this._tooltipOptions = {}, this.options = { ...this.options, ...t }, this._scale.color.range(this.options.colorRange).clamp(!0), this._scale.radius.range(this.options.radiusRange ?? [this.options.radius, this.options.radius]).clamp(!0), this._scale.opacity.range(
|
97
97
|
typeof this.options.opacity == "number" ? [this.options.opacity, this.options.opacity] : this.options.opacity
|
98
98
|
).clamp(!0);
|
99
99
|
}
|
@@ -112,12 +112,12 @@ class H extends l.SVG {
|
|
112
112
|
* @param map Reference to the map to which this layer has been added
|
113
113
|
*/
|
114
114
|
onAdd(t) {
|
115
|
-
var
|
116
|
-
return super.onAdd(t), this._map = t, (
|
115
|
+
var i;
|
116
|
+
return super.onAdd(t), this._map = t, (i = this._tooltip) == null || i.setLatLng([0, 0]).addTo(t), t.on("moveend", this.redraw, this), this.redraw(), this;
|
117
117
|
}
|
118
118
|
_project(t) {
|
119
|
-
const { x:
|
120
|
-
return [
|
119
|
+
const { x: i, y: o } = this._map.latLngToLayerPoint(t);
|
120
|
+
return [i, o];
|
121
121
|
}
|
122
122
|
/**
|
123
123
|
* Callback made by Leaflet when the layer is removed from the map
|
@@ -140,54 +140,54 @@ class H extends l.SVG {
|
|
140
140
|
redraw() {
|
141
141
|
const t = this;
|
142
142
|
if (!t._map) return;
|
143
|
-
const
|
144
|
-
const s = t._accessor(
|
145
|
-
return { coord: s, point: p, data:
|
146
|
-
}),
|
147
|
-
return "hexbin zoom-" +
|
148
|
-
}).merge(
|
149
|
-
|
150
|
-
}
|
151
|
-
_linearlySpace(t,
|
152
|
-
const
|
153
|
-
return Array.from({ length:
|
154
|
-
}
|
155
|
-
_createHexagons(t,
|
156
|
-
const
|
157
|
-
({ x: e, y: a }) =>
|
158
|
-
), s =
|
143
|
+
const i = t._data.map((n) => {
|
144
|
+
const s = t._accessor(n), p = t._project(s);
|
145
|
+
return { coord: s, point: p, data: n };
|
146
|
+
}), o = this._d3Container.selectAll("g.hexbin").data([this._map.getZoom()], (n) => n), u = o.enter().append("g").attr("class", function(n) {
|
147
|
+
return "hexbin zoom-" + n;
|
148
|
+
}).merge(o);
|
149
|
+
o.exit().remove(), this._createHexagons(u, i);
|
150
|
+
}
|
151
|
+
_linearlySpace(t, i, o) {
|
152
|
+
const l = (i - t) / Math.max(o - 1, 1);
|
153
|
+
return Array.from({ length: o }, (u, n) => t + n * l);
|
154
|
+
}
|
155
|
+
_createHexagons(t, i) {
|
156
|
+
const o = this, l = o._map.getSize(), u = o._map.getBounds().pad(o.options.radius * 2 / Math.max(l.x, l.y)), n = o._hexLayout(i).filter(
|
157
|
+
({ x: e, y: a }) => u.contains(o._map.layerPointToLatLng(c.point(e, a)))
|
158
|
+
), s = o._getExtent(n, o._fn.colorValue, o.options.colorScaleExtent), p = o._getExtent(n, o._fn.radiusValue, o.options.radiusScaleExtent), d = o._getExtent(n, o._fn.opacityValue, o.options.opacityScaleExtent), h = this.options.colorDomain ?? o._linearlySpace(
|
159
159
|
s[0],
|
160
160
|
s[1],
|
161
|
-
|
161
|
+
o._scale.color.range().length
|
162
162
|
), g = this.options.radiusDomain || p;
|
163
|
-
|
164
|
-
const m = t.selectAll("g.hexbin-container").data(
|
165
|
-
m.select("path.hexbin-hexagon").transition().duration(
|
166
|
-
const x = m.enter().append("g").attr("class", "hexbin-container").style("pointer-events",
|
163
|
+
o._scale.color.domain(h), o._scale.radius.domain(g), o._scale.opacity.domain(d);
|
164
|
+
const m = t.selectAll("g.hexbin-container").data(n, ({ x: e, y: a }) => `${e}:${a}`);
|
165
|
+
m.select("path.hexbin-hexagon").transition().duration(o.options.duration).attr("fill", o._fn.fill.bind(o)).attr("fill-opacity", (e) => o._scale.opacity(o._fn.opacityValue.call(o, e))).attr("stroke-opacity", (e) => o._scale.opacity(o._fn.opacityValue.call(o, e))).attr("d", (e) => o._hexLayout.hexagon(o._scale.radius(o._fn.radiusValue.call(o, e))));
|
166
|
+
const x = m.enter().append("g").attr("class", "hexbin-container").style("pointer-events", o.options.pointerEvents);
|
167
167
|
x.on("mouseover", function(e, a) {
|
168
168
|
L(this).raise();
|
169
169
|
});
|
170
|
-
const
|
171
|
-
|
172
|
-
var
|
173
|
-
(
|
174
|
-
typeof
|
170
|
+
const b = x.append("path").attr("class", "hexbin-hexagon").attr("transform", ({ x: e, y: a }) => `translate(${e},${a})`).attr("d", () => o._hexLayout.hexagon(o._scale.radius.range()[0])).attr("fill", o._fn.fill.bind(o)).attr("fill-opacity", 0.01).attr("stroke-opacity", 0.01).style("pointer-events", "all");
|
171
|
+
b.transition().duration(o.options.duration).attr("fill-opacity", (e) => o._scale.opacity(o._fn.opacityValue.call(o, e))).attr("stroke-opacity", (e) => o._scale.opacity(o._fn.opacityValue.call(o, e))).attr("d", (e) => o._hexLayout.hexagon(o._scale.radius(o._fn.radiusValue.call(o, e)))).style("pointer-events", "all"), x.append("path").attr("class", "hexbin-grid").attr("transform", ({ x: e, y: a }) => `translate(${e},${a})`).attr("d", () => o._hexLayout.hexagon(o.options.radius)).attr("fill", "none").attr("stroke", "none"), b.on("mouseover", function(e, a) {
|
172
|
+
var _, S;
|
173
|
+
(_ = o._tooltipOptions) != null && _.content && ((S = o._tooltip) == null || S.setContent(
|
174
|
+
typeof o._tooltipOptions.content == "function" ? o._tooltipOptions.content(a) : o._tooltipOptions.content
|
175
175
|
).setLatLng(
|
176
|
-
|
177
|
-
).openOn(
|
176
|
+
o._map.layerPointToLatLng(c.point(a.x, a.y))
|
177
|
+
).openOn(o._map)), o._hoverHandler.mouseover(this, o, e, a), o._dispatch.call("mouseover", this, a, o, e), this.classList.add("hover");
|
178
178
|
}).on("mouseout", function(e, a) {
|
179
|
-
var
|
180
|
-
(
|
179
|
+
var _;
|
180
|
+
(_ = o._tooltip) == null || _.close(), o._hoverHandler.mouseout(this, o, e, a), o._dispatch.call("mouseout", this, a, o, e), this.classList.remove("hover");
|
181
181
|
}).on("click", function(e, a) {
|
182
|
-
const
|
183
|
-
|
182
|
+
const _ = o._map.layerPointToLatLng(c.point(a.x, a.y));
|
183
|
+
o._dispatch.call("click", this, a, _, o, e), e.stopPropagation();
|
184
184
|
});
|
185
|
-
const
|
186
|
-
|
185
|
+
const E = m.exit();
|
186
|
+
E.select("path.hexbin-hexagon").transition().duration(o.options.duration).attr("fill-opacity", 0).attr("stroke-opacity", 0).attr("d", (e) => o._hexLayout.hexagon(0)), E.transition().duration(o.options.duration).remove();
|
187
187
|
}
|
188
|
-
_getExtent(t,
|
189
|
-
let
|
190
|
-
return (
|
188
|
+
_getExtent(t, i, o) {
|
189
|
+
let l = T(t, i.bind(this));
|
190
|
+
return (l[0] === void 0 || l[1] === void 0) && (l = [0, 0]), o[0] != null && (l[0] = o[0]), o[1] != null && (l[1] = o[1]), l;
|
191
191
|
}
|
192
192
|
radius(t) {
|
193
193
|
return t === void 0 ? this.options.radius : (this.options.radius = t, this._hexLayout.radius(t), this.options.radiusRange == null && this._scale.radius.range([this.options.radius, this.options.radius]).clamp(!0), this);
|
@@ -235,8 +235,8 @@ class H extends l.SVG {
|
|
235
235
|
return t === void 0 ? this._fn.fill : (this._fn.fill = t, this);
|
236
236
|
}
|
237
237
|
// Implementation
|
238
|
-
data(t,
|
239
|
-
return t === void 0 ? this._data : (!C(t[0]) && !
|
238
|
+
data(t, i) {
|
239
|
+
return t === void 0 ? this._data : (!C(t[0]) && !i && console.error("Leaflet hexbin: data does not appear to be an array of L.LatLngExpression. You must provide an accessor function to convert the data to L.LatLngExpression"), this._data = t ?? [], this._accessor = i ?? ((o) => o), this.redraw(), this);
|
240
240
|
}
|
241
241
|
/*
|
242
242
|
* Getter for the event dispatcher
|
@@ -245,17 +245,17 @@ class H extends l.SVG {
|
|
245
245
|
return this._dispatch;
|
246
246
|
}
|
247
247
|
hoverHandler(t) {
|
248
|
-
return t === void 0 ? this._hoverHandler : (this._hoverHandler = t ??
|
248
|
+
return t === void 0 ? this._hoverHandler : (this._hoverHandler = t ?? V.none(), this.redraw(), this);
|
249
249
|
}
|
250
250
|
// Cannot overload bindTooltip() with data dependant content
|
251
251
|
tooltip(t) {
|
252
|
-
return this._tooltipOptions = t, this._tooltip ? this._tooltip.options = t.options ?? {} : this._tooltip =
|
252
|
+
return this._tooltipOptions = t, this._tooltip ? this._tooltip.options = t.options ?? {} : this._tooltip = c.tooltip(t.options), this;
|
253
253
|
}
|
254
254
|
getTooltip() {
|
255
255
|
return this._tooltip;
|
256
256
|
}
|
257
|
-
bindTooltip(t,
|
258
|
-
return t instanceof
|
257
|
+
bindTooltip(t, i) {
|
258
|
+
return t instanceof c.Tooltip ? (this._tooltip = t, this._map && this._tooltip.setLatLng([0, 0]).addTo(this._map)) : this._tooltip = c.tooltip(i).setContent(t), this;
|
259
259
|
}
|
260
260
|
unbindTooltip() {
|
261
261
|
var t;
|
@@ -266,17 +266,17 @@ class H extends l.SVG {
|
|
266
266
|
*/
|
267
267
|
getLatLngs() {
|
268
268
|
const t = this;
|
269
|
-
return this._data.map(function(
|
270
|
-
return
|
269
|
+
return this._data.map(function(i) {
|
270
|
+
return c.latLng(t._fn.lat(i), t._fn.lng(i));
|
271
271
|
});
|
272
272
|
}
|
273
273
|
/*
|
274
274
|
* Get path geometry as GeoJSON
|
275
275
|
*/
|
276
276
|
toGeoJSON() {
|
277
|
-
return
|
277
|
+
return c.GeoJSON.getFeature(this, {
|
278
278
|
type: "MultiPoint",
|
279
|
-
coordinates:
|
279
|
+
coordinates: c.GeoJSON.latLngsToCoords(this.getLatLngs(), 0)
|
280
280
|
});
|
281
281
|
}
|
282
282
|
}
|
@@ -284,7 +284,7 @@ function w(r) {
|
|
284
284
|
return new H(r);
|
285
285
|
}
|
286
286
|
export {
|
287
|
-
|
287
|
+
V as HexbinHoverHandler,
|
288
288
|
H as HexbinLayer,
|
289
289
|
w as hexbinLayer
|
290
290
|
};
|
package/dist/index.es.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.es.js","sources":["../src/HexbinHoverHandler.ts","../src/HexbinLayer.ts"],"sourcesContent":["import * as d3 from 'd3';\nimport type { HexbinData } from './HexbinLayer';\nimport { type HexbinLayer } from './HexbinLayer';\n\nexport interface HexbinHoverHandler<Data> {\n mouseover(svg: SVGPathElement, hexLayer: HexbinLayer<Data>, event: MouseEvent, data: HexbinData<Data>[]): void;\n mouseout(svg: SVGPathElement, hexLayer: HexbinLayer<Data>, event: MouseEvent, data: HexbinData<Data>[]): void;\n}\n\nexport namespace HexbinHoverHandler {\n\n export function resizeFill(): HexbinHoverHandler<any> {\n return {\n mouseover: function (svg: SVGPathElement, hexLayer: HexbinLayer<any>, event: MouseEvent, data: HexbinData<any>[]) {\n const o = d3.select<HTMLElement | null, HexbinData<any>[]>(svg.parentElement);\n o.select('path.hexbin-hexagon')\n .transition().duration(hexLayer.options.duration)\n .attr('d', function (d) {\n return hexLayer._hexLayout.hexagon(hexLayer.options.radius);\n });\n },\n mouseout: function (svg: SVGPathElement, hexLayer: HexbinLayer<any>, event: MouseEvent, data: HexbinData<any>[]) {\n const o = d3.select<HTMLElement | null, HexbinData<any>[]>(svg.parentElement);\n o.select<SVGPathElement>('path.hexbin-hexagon')\n .transition().duration(hexLayer.options.duration)\n .attr('d', function (d) {\n return hexLayer._hexLayout.hexagon(hexLayer._scale.radius(hexLayer._fn.radiusValue.call(hexLayer, d)));\n });\n }\n };\n\n }\n\n export interface ResizeScaleOptions {\n radiusScale?: number;\n duration?: number;\n }\n\n export function resizeScale(radiusScale: number = 1.5): HexbinHoverHandler<any> {\n\n // return the handler instance\n return {\n mouseover: function (svg, hexLayer, event, data) {\n const o = d3.select<HTMLElement | null, HexbinData<any>[]>(svg.parentElement);\n o.select('path.hexbin-hexagon')\n .transition().duration(hexLayer.options.duration)\n .attr('d', function () {\n return hexLayer._hexLayout.hexagon(hexLayer._scale.radius.range()[1] * (radiusScale));\n });\n },\n mouseout: function (svg, hexLayer, event, data) {\n const o = d3.select<HTMLElement | null, HexbinData<any>[]>(svg.parentElement!);\n o.select('path.hexbin-hexagon')\n .transition().duration(hexLayer.options.duration)\n .attr('d', (d) => {\n return hexLayer._hexLayout.hexagon(hexLayer._scale.radius(hexLayer._fn.radiusValue.call(hexLayer, d)));\n });\n }\n };\n }\n\n\n export function compound<Data>(handlers: HexbinHoverHandler<Data>[] = [none()]): HexbinHoverHandler<Data> {\n return {\n mouseover: function (svg, hexLayer, event, data) {\n handlers!.forEach((h) => { h.mouseover(svg, hexLayer, event, data); });\n },\n mouseout: function (svg, hexLayer, event, data) {\n handlers!.forEach((h) => { h.mouseout(svg, hexLayer, event, data); });\n }\n };\n }\n\n export function none(): HexbinHoverHandler<any> {\n return {\n mouseover: function () { },\n mouseout: function () { }\n };\n }\n\n}\nexport default HexbinHoverHandler\n","import { scaleLinear, dispatch, select, extent } from 'd3';\nimport { hexbin, type HexbinBin } from 'd3-hexbin';\nimport * as L from 'leaflet';\nimport HexbinHoverHandler from './HexbinHoverHandler';\n\n// Need to expose some methods from L.SVG\ndeclare module 'leaflet' {\n interface SVG {\n _initContainer(): void;\n _container: SVGElementTagNameMap['svg']\n }\n}\n\ntype TooltipOptions<Data> = {\n options?: L.TooltipOptions,\n content?: L.Content | ((d: HexbinData<Data>[]) => L.Content)\n}\n\nexport interface HexbinLayerConfig {\n /**\n * Hex grid cell radius in pixels.\n * This value should be a positive number.\n * This radius controls the radius of the hexagons used to bin the data\n * but not necessarily to draw each individual hexbin.\n * @default 12\n */\n radius?: number,\n /**\n * Sets the opacity on the hexbin layer.\n * This value should be a number between 0 and 1.\n * If an array is provided, the first element is the minimum opacity and the second is the maximum.\n * @default 0.6\n */\n opacity?: number | [number, number],\n /**\n * Opacity scale extent: [min, max] domain for opacity interpolation.\n * @default [1, undefined]\n */\n opacityScaleExtent?: [number, number | undefined],\n /**\n * Duration of transition in milliseconds.\n * @default 200\n */\n duration?: number,\n\n /**\n * Color scale extent: [min, max] domain for color interpolation.\n * @default [1, undefined]\n */\n colorScaleExtent?: [number, number | undefined],\n /**\n * This is used to override the default behavior, which is to derive the color domain from the data.\n * Normally, you can tweak the generation of the color domain using the colorScaleExtent option.\n * However, if you want to set a completely custom domain, you can provide it as an array of values with this option.\n * The array of values will be passed directly into the domain of the color scale before rendering.\n * @default null\n */\n colorDomain?: number[] | null\n /**\n * Color range used to fill the hexbins.\n * @default ['#f7fbff', '#08306b']\n */\n colorRange?: string[],\n\n /**\n * Radius scale extent: [min, max] domain for radius interpolation.\n * @default [1, undefined]\n */\n radiusScaleExtent?: [number, number | undefined],\n /**\n * This is used to override the default behavior, which is to derive the radius domain from the data.\n * Normally, you can tweak the generation of the radius domain using the radiusScaleExtent option.\n * However, if you want to set a completely custom domain, you can provide it as an array of values with this option.\n * The array of values will be passed directly into the domain of the radius scale before rendering.\n * @default null\n */\n radiusDomain?: number[] | null\n /**\n * Sets the range of the radius scale used to size the hexbins.\n * @default hex grid cell radius\n */\n radiusRange?: [number, number] | null,\n\n /**\n * You should only modify this config option if you want to change the mouse event behavior on hexbins. This will modify when the events are propagated based on the visibility state and/or part of the hexbin being hovered.\n * @default 'all'\n */\n pointerEvents?: string\n}\n\n/**\n * Hexbin data attached to each hexagon, once binned.\n */\nexport type HexbinData<Data> = {\n data: Data;\n coord: L.LatLngExpression;\n point: Readonly<[number, number]>;\n}\n\n\nfunction isLatLngExpression(d: any): d is L.LatLngExpression {\n return (\n d instanceof L.LatLng ||\n (typeof d === 'object' && \"lat\" in d && \"lng\" in d) ||\n (Array.isArray(d) && d.length === 2 && typeof d[0] === 'number' && typeof d[1] === 'number')\n )\n}\n\n/**\n * Instantiate a hexbin layer.\n * Extends L.SVG to take advantage of built-in zoom animations.\n */\nexport class HexbinLayer<Data = L.LatLngExpression> extends L.SVG {\n options: Required<HexbinLayerConfig> & L.RendererOptions = {\n radius: 12,\n opacity: 0.6,\n duration: 200,\n\n colorScaleExtent: [1, undefined],\n radiusScaleExtent: [1, undefined],\n opacityScaleExtent: [1, undefined],\n colorDomain: null,\n radiusDomain: null,\n colorRange: ['#f7fbff', '#08306b'],\n radiusRange: null,\n\n pointerEvents: 'all',\n // Handle parent default options\n // ...L.SVG.prototype.options,\n ...L.Renderer.prototype.options,\n ...L.Layer.prototype.options\n }\n _fn = {\n lng: (d: Data) => L.latLng(this._accessor(d)).lng,\n lat: (d: Data) => L.latLng(this._accessor(d)).lat,\n colorValue: (d: HexbinData<Data>[]) => d.length,\n radiusValue: (d: HexbinData<Data>[]) => d.length,\n opacityValue: (d: HexbinData<Data>[]) => d.length,\n fill: (d: HexbinData<Data>[]) => {\n const val = this._fn.colorValue(d);\n return (null != val) ? this._scale.color(val) : 'none';\n }\n }\n // Set up the customizable scale\n _scale = {\n color: scaleLinear<string, string>(),\n radius: scaleLinear(),\n opacity: scaleLinear()\n };\n\n // Set up the Dispatcher for managing events and callbacks\n _dispatch = dispatch<SVGPathElement>('mouseover', 'mouseout', 'click');\n\n // Set up the default hover handler\n _hoverHandler: HexbinHoverHandler<Data> = HexbinHoverHandler.none();\n\n // Create the hex layout\n _hexLayout = hexbin<HexbinData<Data>>()\n .radius(this.options.radius)\n .x(({ point: [x, _] }) => x)\n .y(({ point: [_, y] }) => y);\n\n // Initialize the data array to be empty\n _data = Array<Data>()\n\n\n declare _map: L.Map;\n\n _tooltipOptions: TooltipOptions<Data> = {};\n declare _tooltip: L.Tooltip | undefined;\n\n declare _container: SVGElementTagNameMap['svg'];\n\n // declare _container: HTMLElement;\n declare _d3Container: d3.Selection<SVGGElement, unknown, null, undefined>;\n\n public constructor(options?: HexbinLayerConfig) {\n super()\n // L.SVG.prototype.initialize.call(this, options);\n this.options = { ...this.options, ...options };\n this._scale.color\n .range(this.options.colorRange)\n .clamp(true);\n\n this._scale.radius\n .range(this.options.radiusRange ?? [this.options.radius, this.options.radius])\n .clamp(true);\n\n this._scale.opacity\n .range(\n typeof this.options.opacity === 'number'\n ? [this.options.opacity, this.options.opacity]\n : this.options.opacity\n ).clamp(true);\n\n };\n\n _accessor(d: Data) {\n return d as L.LatLngExpression;\n }\n\n /**\n * Create the SVG container for the hexbins\n * @private\n */\n _initContainer() {\n super._initContainer();\n this._d3Container = select(this._container).select<SVGElementTagNameMap['g']>('g');\n }\n /**\n * Callback made by Leaflet when the layer is added to the map\n * @param map Reference to the map to which this layer has been added\n */\n onAdd(map: L.Map): this {\n // Call super.onAdd to properly initialize the SVG pane\n super.onAdd(map)\n\n // Store a reference to the map for later use\n this._map = map;\n this._tooltip?.setLatLng([0, 0]).addTo(map);\n // Redraw on moveend\n map.on('moveend', this.redraw, this);\n // Initial draw\n this.redraw();\n return this\n }\n\n _project(latlng: L.LatLngExpression) {\n const { x, y } = this._map.latLngToLayerPoint(latlng);\n return [x, y] as const;\n }\n\n /**\n * Callback made by Leaflet when the layer is removed from the map\n * @param map Reference to the map from which this layer is being removed\n */\n onRemove(map: L.Map): this {\n // Destroy the svg container\n this._destroyContainer();\n // Remove events\n map.off('moveend', this.redraw, this);\n return this\n }\n\n /**\n * Clean up the svg container\n * @private\n */\n _destroyContainer() {\n select(this._container).remove();\n }\n\n /**\n * (Re)draws the hexbins data on the container\n * @private\n */\n redraw() {\n const that = this;\n\n if (!that._map) return\n\n // Generate the mapped version of the data\n const data = that._data.map<HexbinData<Data>>((d: Data) => {\n const coord = that._accessor(d)\n const point = that._project(coord);\n return { coord: coord, point, data: d };\n });\n\n // Select the hex group for the current zoom level. This has\n // the effect of recreating the group if the zoom level has changed\n const join = this._d3Container.selectAll<SVGGElement, number>('g.hexbin')\n .data<number>([this._map.getZoom()], (d) => d);\n\n // enter\n const enter = join.enter().append('g')\n .attr('class', function (d) { return 'hexbin zoom-' + d; });\n\n // enter + update\n const enterUpdate = enter.merge(join);\n\n // exit\n join.exit().remove();\n\n // add the hexagons to the select\n this._createHexagons(enterUpdate, data);\n\n }\n\n _linearlySpace(from: number, to: number, length: number): number[] {\n const step = (to - from) / Math.max(length - 1, 1);\n return Array.from({ length }, (_, i) => from + (i * step));\n }\n\n _createHexagons(g: d3.Selection<SVGGElement, number, SVGGElement, unknown>, data: HexbinData<Data>[]) {\n const thisLayer = this;\n\n // Create the bins using the hexbin layout\n\n // Generate the map bounds (to be used to filter the hexes to what is visible)\n const size = thisLayer._map.getSize();\n const bounds = thisLayer._map.getBounds().pad(thisLayer.options.radius * 2 / Math.max(size.x, size.y));\n\n const bins = thisLayer._hexLayout(data).filter(\n ({ x, y }) => bounds.contains(thisLayer._map.layerPointToLatLng(L.point(x, y)))\n );\n\n // Derive the extents of the data values for each dimension\n const colorExtent = thisLayer._getExtent(bins, thisLayer._fn.colorValue, thisLayer.options.colorScaleExtent);\n const radiusExtent = thisLayer._getExtent(bins, thisLayer._fn.radiusValue, thisLayer.options.radiusScaleExtent);\n const opacityExtent = thisLayer._getExtent(bins, thisLayer._fn.opacityValue, thisLayer.options.opacityScaleExtent);\n\n // Match the domain cardinality to that of the color range, to allow for a polylinear scale\n const colorDomain = this.options.colorDomain\n ?? thisLayer._linearlySpace(\n colorExtent[0],\n colorExtent[1],\n thisLayer._scale.color.range().length\n );\n const radiusDomain = this.options.radiusDomain || radiusExtent;\n\n // Set the scale domains\n thisLayer._scale.color.domain(colorDomain);\n thisLayer._scale.radius.domain(radiusDomain);\n thisLayer._scale.opacity.domain(opacityExtent);\n\n\n /*\n * Join\n * Join the Hexagons to the data\n * Use a deterministic id for tracking bins based on position\n */\n const join = g.selectAll<SVGGElement, HexbinBin<HexbinData<Data>>>('g.hexbin-container')\n .data(bins, ({ x, y }) => `${x}:${y}`);\n\n\n /*\n * Update\n * Set the fill and opacity on a transition\n * opacity is re-applied in case the enter transition was cancelled\n * the path is applied as well to resize the bins\n */\n join.select<SVGPathElement>('path.hexbin-hexagon')\n .transition().duration(thisLayer.options.duration)\n .attr('fill', thisLayer._fn.fill.bind(thisLayer))\n .attr('fill-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('stroke-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('d', (d) => {\n return thisLayer._hexLayout.hexagon(thisLayer._scale.radius(thisLayer._fn.radiusValue.call(thisLayer, d)));\n });\n\n\n /*\n * Enter\n * Establish the path, size, fill, and the initial opacity\n * Transition to the final opacity and size\n */\n const container = join.enter().append('g').attr('class', 'hexbin-container')\n .style('pointer-events', thisLayer.options.pointerEvents);\n\n\n container.on('mouseover', function (this: SVGGElement, d: MouseEvent, i) {\n // Bring container to foreground by re-appending it to the DOM\n select<SVGGElement, HexbinBin<HexbinData<Data>>>(this).raise();\n })\n\n const hexagons = container.append('path').attr('class', 'hexbin-hexagon')\n .attr('transform', ({ x, y }) => `translate(${x},${y})`)\n .attr('d', () => thisLayer._hexLayout.hexagon(thisLayer._scale.radius.range()[0]))\n // .attr('d', (data, length) => thisLayer._hexLayout.hexagon(thisLayer._scale.radius(data.length)))\n .attr('fill', thisLayer._fn.fill.bind(thisLayer))\n .attr('fill-opacity', 0.01)\n .attr('stroke-opacity', 0.01)\n .style('pointer-events', 'all');\n\n hexagons.transition().duration(thisLayer.options.duration)\n .attr('fill-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('stroke-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('d', (d) => thisLayer._hexLayout.hexagon(thisLayer._scale.radius(thisLayer._fn.radiusValue.call(thisLayer, d))))\n .style('pointer-events', 'all');\n\n // Grid\n const gridEnter = container.append('path').attr('class', 'hexbin-grid')\n .attr('transform', ({ x, y }) => `translate(${x},${y})`)\n .attr('d', () => thisLayer._hexLayout.hexagon(thisLayer.options.radius))\n .attr('fill', 'none')\n .attr('stroke', 'none')\n\n\n // Grid enter-update\n hexagons.on('mouseover', function (this: SVGPathElement, ev: MouseEvent, data) {\n if (thisLayer._tooltipOptions?.content) {\n thisLayer._tooltip\n ?.setContent(\n typeof thisLayer._tooltipOptions.content === \"function\"\n ? thisLayer._tooltipOptions.content(data)\n : thisLayer._tooltipOptions.content\n )\n .setLatLng(\n thisLayer._map.layerPointToLatLng(L.point(data.x, data.y))\n )\n .openOn(thisLayer._map);\n }\n thisLayer._hoverHandler.mouseover(this, thisLayer, ev, data);\n thisLayer._dispatch.call('mouseover', this, data, thisLayer, ev);\n this.classList.add('hover')\n })\n .on('mouseout', function (this: SVGPathElement, ev: MouseEvent, data) {\n thisLayer._tooltip?.close()\n thisLayer._hoverHandler.mouseout(this, thisLayer, ev, data);\n thisLayer._dispatch.call('mouseout', this, data, thisLayer, ev);\n this.classList.remove('hover')\n })\n .on('click', function (this, ev: MouseEvent, data) {\n const latLng = thisLayer._map.layerPointToLatLng(L.point(data.x, data.y));\n thisLayer._dispatch.call('click', this, data, latLng, thisLayer, ev);\n ev.stopPropagation()\n });\n\n\n // Exit\n const exit = join.exit();\n\n exit.select('path.hexbin-hexagon')\n .transition().duration(thisLayer.options.duration)\n .attr('fill-opacity', 0)\n .attr('stroke-opacity', 0)\n .attr('d', (d) => thisLayer._hexLayout.hexagon(0));\n\n exit.transition().duration(thisLayer.options.duration).remove();\n\n }\n\n _getExtent(\n bins: HexbinBin<HexbinData<Data>>[],\n valueFn: (d: HexbinBin<HexbinData<Data>>) => number,\n scaleExtent: [number, number | undefined]\n ): [number, number] {\n\n // Determine the extent of the values\n let ext = extent<HexbinBin<HexbinData<Data>>, number>(bins, valueFn.bind(this));\n // If either's null, initialize them to 0\n if (ext[0] === undefined || ext[1] === undefined) {\n ext = [0, 0]\n }\n\n // Now apply the optional clipping of the extent\n if (undefined != scaleExtent[0]) ext[0] = scaleExtent[0];\n if (undefined != scaleExtent[1]) ext[1] = scaleExtent[1];\n\n return ext as [number, number]\n }\n\n // ------------------------------------\n // Public API\n // ------------------------------------\n\n radius(): number;\n radius(v: number): this;\n radius(v?: number): this | number {\n if (v === undefined) return this.options.radius;\n\n this.options.radius = v;\n this._hexLayout.radius(v);\n\n if (null == this.options.radiusRange) {\n this._scale.radius.range([this.options.radius, this.options.radius]).clamp(true);\n }\n\n return this;\n }\n\n opacity(): number | [number, number];\n opacity(v: number | [number, number]): this;\n opacity(v?: number | [number, number]): this | number | [number, number] {\n if (v === undefined) return this.options.opacity\n this.options.opacity = v;\n this._scale.opacity.range(typeof v === 'number' ? [v, v] : v).clamp(true);\n\n return this;\n }\n\n duration(): number;\n duration(v: number): this;\n duration(v?: number): this | number {\n if (v === undefined) return this.options.duration\n this.options.duration = v\n\n return this;\n }\n\n colorScaleExtent(): [number, number | undefined];\n colorScaleExtent(v: [number, number | undefined]): this;\n colorScaleExtent(v?: [number, number | undefined]): this | [number, number | undefined] {\n if (v === undefined) { return this.options.colorScaleExtent; }\n this.options.colorScaleExtent = v;\n\n return this;\n }\n\n radiusScaleExtent(): [number, number | undefined];\n radiusScaleExtent(v: [number, number | undefined]): this;\n radiusScaleExtent(v?: [number, number | undefined]): this | [number, number | undefined] {\n if (v === undefined) { return this.options.radiusScaleExtent; }\n this.options.radiusScaleExtent = v;\n\n return this;\n }\n\n opacityScaleExtent(): [number, number | undefined];\n opacityScaleExtent(v: [number, number | undefined]): this;\n opacityScaleExtent(v?: [number, number | undefined]): this | [number, number | undefined] {\n if (v === undefined) { return this.options.opacityScaleExtent; }\n this.options.opacityScaleExtent = v;\n\n return this;\n }\n\n\n colorRange(): string[];\n colorRange(v: string[]): this;\n colorRange(v?: string[]): this | string[] {\n if (v === undefined) { return this.options.colorRange; }\n this.options.colorRange = v;\n this._scale.color.range(v);\n\n return this;\n }\n\n radiusRange(): [number, number] | null;\n radiusRange(v: [number, number] | null): this;\n radiusRange(v?: [number, number] | null): this | [number, number] | null {\n if (v === undefined) { return this.options.radiusRange; }\n this.options.radiusRange = v;\n this._scale.radius.range(this.options.radiusRange ?? [this.options.radius, this.options.radius]).clamp(true);\n\n return this;\n }\n\n colorScale(): d3.ScaleLinear<string, string>;\n colorScale(v: d3.ScaleLinear<string, string>): this;\n colorScale(v?: d3.ScaleLinear<string, string>) {\n if (v === undefined) return this._scale.color;\n this._scale.color = v;\n return this;\n }\n\n radiusScale(): d3.ScaleLinear<number, number>;\n radiusScale(v: d3.ScaleLinear<number, number>): this;\n radiusScale(v?: d3.ScaleLinear<number, number>): this | d3.ScaleLinear<number, number> {\n if (v === undefined) return this._scale.radius\n this._scale.radius = v;\n return this;\n }\n\n lng(): (d: Data) => number;\n lng(v: (d: Data) => number): this;\n lng(v?: (d: Data) => number) {\n if (v === undefined) { return this._fn.lng; }\n this._fn.lng = v;\n\n return this;\n }\n\n lat(): (d: Data) => number;\n lat(v: (d: Data) => number): this;\n lat(v?: (d: Data) => number) {\n if (v === undefined) { return this._fn.lat; }\n this._fn.lat = v;\n\n return this;\n }\n\n colorValue(): (d: HexbinData<Data>[]) => number;\n colorValue(v: (d: HexbinData<Data>[]) => number): this;\n colorValue(v?: (d: HexbinData<Data>[]) => number) {\n if (v === undefined) { return this._fn.colorValue; }\n this._fn.colorValue = v;\n\n return this;\n }\n\n radiusValue(): (d: HexbinData<Data>[]) => number;\n radiusValue(v: (d: HexbinData<Data>[]) => number): this;\n radiusValue(v?: (d: HexbinData<Data>[]) => number) {\n if (v === undefined) { return this._fn.radiusValue; }\n this._fn.radiusValue = v;\n\n return this;\n }\n\n fill(): (d: HexbinData<Data>[]) => string;\n fill(v: (d: HexbinData<Data>[]) => string): this;\n fill(v?: (d: HexbinData<Data>[]) => string) {\n if (v === undefined) { return this._fn.fill; }\n this._fn.fill = v;\n\n return this;\n }\n\n data(): Data[];\n data(v: Data extends L.LatLngExpression ? Data[] : never): this;\n data(v: Data[], accessor?: (d: Data) => L.LatLngExpression): this;\n\n // Implementation\n data(v?: Data[] | L.LatLngExpression[], accessor?: (d: Data) => L.LatLngExpression): this | Data[] {\n if (v === undefined) {\n return this._data;\n }\n\n if (!isLatLngExpression(v[0]) && !accessor) {\n console.error(\"Leaflet hexbin: data does not appear to be an array of L.LatLngExpression. You must provide an accessor function to convert the data to L.LatLngExpression\");\n }\n\n this._data = v as Data[] ?? []\n this._accessor = accessor ?? ((d: Data) => d as L.LatLngExpression)\n\n this.redraw();\n return this;\n }\n\n /*\n * Getter for the event dispatcher\n */\n dispatch() { return this._dispatch }\n\n hoverHandler(): HexbinHoverHandler<Data>;\n hoverHandler(v: HexbinHoverHandler<Data>): this;\n hoverHandler(v?: HexbinHoverHandler<Data>): this | HexbinHoverHandler<Data> {\n if (v === undefined) { return this._hoverHandler; }\n this._hoverHandler = (null != v) ? v : HexbinHoverHandler.none();\n\n this.redraw();\n\n return this;\n }\n\n // Cannot overload bindTooltip() with data dependant content\n tooltip(tooltip: TooltipOptions<Data>): this {\n this._tooltipOptions = tooltip;\n if (this._tooltip)\n this._tooltip.options = tooltip.options ?? {};\n else {\n this._tooltip = L.tooltip(tooltip.options)\n }\n return this\n }\n\n getTooltip(): L.Tooltip | undefined {\n return this._tooltip\n }\n\n bindTooltip(content: L.Tooltip | L.Content, options?: L.TooltipOptions): this {\n if (content instanceof L.Tooltip) {\n this._tooltip = content;\n // FIXME: weird bug likely coming from vue-leaflet were tooltip is not properly positioned\n // this._tooltip.options.offset[0] -= 5;\n if (this._map) {\n this._tooltip.setLatLng([0, 0]).addTo(this._map)\n }\n } else {\n this._tooltip = L.tooltip(options).setContent(content);\n }\n return this\n }\n\n unbindTooltip(): this {\n this._tooltip?.remove();\n this._tooltip = undefined;\n return this\n }\n\n /*\n * Returns an array of the points in the path, or nested arrays of points in case of multi-polyline.\n */\n getLatLngs() {\n const that = this;\n\n // Map the data into an array of latLngs using the configured lat/lng accessors\n return this._data.map(function (d) {\n return L.latLng(that._fn.lat(d), that._fn.lng(d));\n });\n }\n /*\n * Get path geometry as GeoJSON\n */\n toGeoJSON(): GeoJSON.Feature<GeoJSON.MultiPoint, L.LatLng> {\n return L.GeoJSON.getFeature<L.LatLng, GeoJSON.MultiPoint>(this, {\n type: 'MultiPoint',\n coordinates: L.GeoJSON.latLngsToCoords(this.getLatLngs(), 0)\n });\n }\n}\n\n/**\n * Factory function to instanciate a new hexbin layer\n */\nexport function hexbinLayer<Data = L.LatLngExpression>(options?: HexbinLayerConfig) {\n return new HexbinLayer<Data>(options);\n}\n\n\n"],"names":["HexbinHoverHandler","resizeFill","svg","hexLayer","event","data","d3","d","resizeScale","radiusScale","compound","handlers","none","HexbinHoverHandler$1","isLatLngExpression","L","HexbinLayer","options","val","scaleLinear","dispatch","hexbin","x","_","y","select","map","_a","latlng","that","coord","point","join","enterUpdate","from","to","length","step","g","thisLayer","size","bounds","bins","colorExtent","radiusExtent","opacityExtent","colorDomain","radiusDomain","container","i","hexagons","ev","_b","latLng","exit","valueFn","scaleExtent","ext","extent","v","accessor","tooltip","content","hexbinLayer"],"mappings":"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"}
|
1
|
+
{"version":3,"file":"index.es.js","sources":["../src/HexbinHoverHandler.ts","../src/HexbinLayer.ts"],"sourcesContent":["import * as d3 from 'd3';\nimport type { HexbinData } from './HexbinLayer';\nimport { type HexbinLayer } from './HexbinLayer';\n\nexport interface HexbinHoverHandler<Data> {\n mouseover(svg: SVGPathElement, hexLayer: HexbinLayer<Data>, event: MouseEvent, data: HexbinData<Data>[]): void;\n mouseout(svg: SVGPathElement, hexLayer: HexbinLayer<Data>, event: MouseEvent, data: HexbinData<Data>[]): void;\n}\n\nexport namespace HexbinHoverHandler {\n\n export function resizeFill(): HexbinHoverHandler<any> {\n return {\n mouseover: function (svg: SVGPathElement, hexLayer: HexbinLayer<any>, event: MouseEvent, data: HexbinData<any>[]) {\n const o = d3.select<HTMLElement | null, HexbinData<any>[]>(svg.parentElement);\n o.select('path.hexbin-hexagon')\n .transition().duration(hexLayer.options.duration)\n .attr('d', function (d) {\n return hexLayer._hexLayout.hexagon(hexLayer.options.radius);\n });\n },\n mouseout: function (svg: SVGPathElement, hexLayer: HexbinLayer<any>, event: MouseEvent, data: HexbinData<any>[]) {\n const o = d3.select<HTMLElement | null, HexbinData<any>[]>(svg.parentElement);\n o.select<SVGPathElement>('path.hexbin-hexagon')\n .transition().duration(hexLayer.options.duration)\n .attr('d', function (d) {\n return hexLayer._hexLayout.hexagon(hexLayer._scale.radius(hexLayer._fn.radiusValue.call(hexLayer, d)));\n });\n }\n };\n\n }\n\n export interface ResizeScaleOptions {\n radiusScale?: number;\n duration?: number;\n }\n\n export function resizeScale(radiusScale: number = 1.5): HexbinHoverHandler<any> {\n\n // return the handler instance\n return {\n mouseover: function (svg, hexLayer, event, data) {\n const o = d3.select<HTMLElement | null, HexbinData<any>[]>(svg.parentElement);\n o.select('path.hexbin-hexagon')\n .transition().duration(hexLayer.options.duration)\n .attr('d', function () {\n return hexLayer._hexLayout.hexagon(hexLayer._scale.radius.range()[1] * (radiusScale));\n });\n },\n mouseout: function (svg, hexLayer, event, data) {\n const o = d3.select<HTMLElement | null, HexbinData<any>[]>(svg.parentElement!);\n o.select('path.hexbin-hexagon')\n .transition().duration(hexLayer.options.duration)\n .attr('d', (d) => {\n return hexLayer._hexLayout.hexagon(hexLayer._scale.radius(hexLayer._fn.radiusValue.call(hexLayer, d)));\n });\n }\n };\n }\n\n\n export function compound<Data>(handlers: HexbinHoverHandler<Data>[] = [none()]): HexbinHoverHandler<Data> {\n return {\n mouseover: function (svg, hexLayer, event, data) {\n handlers!.forEach((h) => { h.mouseover(svg, hexLayer, event, data); });\n },\n mouseout: function (svg, hexLayer, event, data) {\n handlers!.forEach((h) => { h.mouseout(svg, hexLayer, event, data); });\n }\n };\n }\n\n export function none(): HexbinHoverHandler<any> {\n return {\n mouseover: function () { },\n mouseout: function () { }\n };\n }\n\n}\nexport default HexbinHoverHandler\n","import { scaleLinear, dispatch, select, extent } from 'd3';\nimport { hexbin, type HexbinBin } from 'd3-hexbin';\nimport * as L from 'leaflet';\nimport HexbinHoverHandler from './HexbinHoverHandler';\n\n// Need to expose some methods from L.SVG\ndeclare module 'leaflet' {\n interface SVG {\n _initContainer(): void;\n _container: SVGElementTagNameMap['svg']\n }\n}\n\ntype TooltipOptions<Data> = {\n options?: L.TooltipOptions,\n content?: L.Content | ((d: HexbinData<Data>[]) => L.Content)\n}\n\nexport interface HexbinLayerConfig {\n /**\n * Hex grid cell radius in pixels.\n * This value should be a positive number.\n * This radius controls the radius of the hexagons used to bin the data\n * but not necessarily to draw each individual hexbin.\n * @default 12\n */\n radius?: number,\n /**\n * Sets the opacity on the hexbin layer.\n * This value should be a number between 0 and 1.\n * If an array is provided, the first element is the minimum opacity and the second is the maximum.\n * @default 0.6\n */\n opacity?: number | [number, number],\n /**\n * Opacity scale extent: [min, max] domain for opacity interpolation.\n * @default [1, undefined]\n */\n opacityScaleExtent?: [number, number | undefined],\n /**\n * Duration of transition in milliseconds.\n * @default 200\n */\n duration?: number,\n\n /**\n * Color scale extent: [min, max] domain for color interpolation.\n * @default [1, undefined]\n */\n colorScaleExtent?: [number, number | undefined],\n /**\n * This is used to override the default behavior, which is to derive the color domain from the data.\n * Normally, you can tweak the generation of the color domain using the colorScaleExtent option.\n * However, if you want to set a completely custom domain, you can provide it as an array of values with this option.\n * The array of values will be passed directly into the domain of the color scale before rendering.\n * @default null\n */\n colorDomain?: number[] | null\n /**\n * Color range used to fill the hexbins.\n * @default ['#f7fbff', '#08306b']\n */\n colorRange?: string[],\n\n /**\n * Radius scale extent: [min, max] domain for radius interpolation.\n * @default [1, undefined]\n */\n radiusScaleExtent?: [number, number | undefined],\n /**\n * This is used to override the default behavior, which is to derive the radius domain from the data.\n * Normally, you can tweak the generation of the radius domain using the radiusScaleExtent option.\n * However, if you want to set a completely custom domain, you can provide it as an array of values with this option.\n * The array of values will be passed directly into the domain of the radius scale before rendering.\n * @default null\n */\n radiusDomain?: number[] | null\n /**\n * Sets the range of the radius scale used to size the hexbins.\n * @default hex grid cell radius\n */\n radiusRange?: [number, number] | null,\n\n /**\n * You should only modify this config option if you want to change the mouse event behavior on hexbins. This will modify when the events are propagated based on the visibility state and/or part of the hexbin being hovered.\n * @default 'all'\n */\n pointerEvents?: string\n}\n\n/**\n * Hexbin data attached to each hexagon, once binned.\n */\nexport type HexbinData<Data> = {\n data: Data;\n coord: L.LatLngExpression;\n point: Readonly<[number, number]>;\n}\n\n\nfunction isLatLngExpression(d: any): d is L.LatLngExpression {\n return (\n d instanceof L.LatLng ||\n (typeof d === 'object' && \"lat\" in d && \"lng\" in d) ||\n (Array.isArray(d) && d.length === 2 && typeof d[0] === 'number' && typeof d[1] === 'number')\n )\n}\n\n/**\n * Instantiate a hexbin layer.\n * Extends L.SVG to take advantage of built-in zoom animations.\n */\nexport class HexbinLayer<Data = L.LatLngExpression> extends L.SVG {\n options: Required<HexbinLayerConfig> & L.RendererOptions = {\n radius: 12,\n opacity: 0.6,\n duration: 200,\n\n colorScaleExtent: [1, undefined],\n radiusScaleExtent: [1, undefined],\n opacityScaleExtent: [1, undefined],\n colorDomain: null,\n radiusDomain: null,\n colorRange: ['#f7fbff', '#08306b'],\n radiusRange: null,\n\n pointerEvents: 'all',\n // Handle parent default options\n // ...L.SVG.prototype.options,\n ...L.Renderer.prototype.options,\n ...L.Layer.prototype.options\n }\n _fn = {\n lng: (d: Data) => L.latLng(this._accessor(d)).lng,\n lat: (d: Data) => L.latLng(this._accessor(d)).lat,\n colorValue: (d: HexbinData<Data>[]) => d.length,\n radiusValue: (d: HexbinData<Data>[]) => d.length,\n opacityValue: (d: HexbinData<Data>[]) => d.length,\n fill: (d: HexbinData<Data>[]) => {\n const val = this._fn.colorValue(d);\n return (null != val) ? this._scale.color(val) : 'none';\n }\n }\n // Set up the customizable scale\n _scale = {\n color: scaleLinear<string, string>(),\n radius: scaleLinear(),\n opacity: scaleLinear()\n };\n\n // Set up the Dispatcher for managing events and callbacks\n _dispatch = dispatch<SVGPathElement>('mouseover', 'mouseout', 'click');\n\n // Set up the default hover handler\n _hoverHandler: HexbinHoverHandler<Data> = HexbinHoverHandler.none();\n\n // Create the hex layout\n _hexLayout = hexbin<HexbinData<Data>>()\n .radius(this.options.radius)\n .x(({ point: [x, _] }) => x)\n .y(({ point: [_, y] }) => y);\n\n // Initialize the data array to be empty\n _data = Array<Data>()\n\n\n declare _map: L.Map;\n\n _tooltipOptions: TooltipOptions<Data> = {};\n declare _tooltip: L.Tooltip | undefined;\n\n declare _container: SVGElementTagNameMap['svg'];\n\n // declare _container: HTMLElement;\n declare _d3Container: d3.Selection<SVGGElement, unknown, null, undefined>;\n\n public constructor(options?: HexbinLayerConfig) {\n super()\n // L.SVG.prototype.initialize.call(this, options);\n this.options = { ...this.options, ...options };\n this._scale.color\n .range(this.options.colorRange)\n .clamp(true);\n\n this._scale.radius\n .range(this.options.radiusRange ?? [this.options.radius, this.options.radius])\n .clamp(true);\n\n this._scale.opacity\n .range(\n typeof this.options.opacity === 'number'\n ? [this.options.opacity, this.options.opacity]\n : this.options.opacity\n ).clamp(true);\n\n };\n\n _accessor(d: Data) {\n return d as L.LatLngExpression;\n }\n\n /**\n * Create the SVG container for the hexbins\n * @private\n */\n _initContainer() {\n super._initContainer();\n this._d3Container = select(this._container).select<SVGElementTagNameMap['g']>('g');\n }\n /**\n * Callback made by Leaflet when the layer is added to the map\n * @param map Reference to the map to which this layer has been added\n */\n onAdd(map: L.Map): this {\n // Call super.onAdd to properly initialize the SVG pane\n super.onAdd(map)\n\n // Store a reference to the map for later use\n this._map = map;\n this._tooltip?.setLatLng([0, 0]).addTo(map);\n // Redraw on moveend\n map.on('moveend', this.redraw, this);\n // Initial draw\n this.redraw();\n return this\n }\n\n _project(latlng: L.LatLngExpression) {\n const { x, y } = this._map.latLngToLayerPoint(latlng);\n return [x, y] as const;\n }\n\n /**\n * Callback made by Leaflet when the layer is removed from the map\n * @param map Reference to the map from which this layer is being removed\n */\n onRemove(map: L.Map): this {\n // Destroy the svg container\n this._destroyContainer();\n // Remove events\n map.off('moveend', this.redraw, this);\n return this\n }\n\n /**\n * Clean up the svg container\n * @private\n */\n _destroyContainer() {\n select(this._container).remove();\n }\n\n /**\n * (Re)draws the hexbins data on the container\n * @private\n */\n redraw() {\n const that = this;\n\n if (!that._map) return\n\n // Generate the mapped version of the data\n const data = that._data.map<HexbinData<Data>>((d: Data) => {\n const coord = that._accessor(d)\n const point = that._project(coord);\n return { coord: coord, point, data: d };\n });\n\n // Select the hex group for the current zoom level. This has\n // the effect of recreating the group if the zoom level has changed\n const join = this._d3Container.selectAll<SVGGElement, number>('g.hexbin')\n .data<number>([this._map.getZoom()], (d) => d);\n\n // enter\n const enter = join.enter().append('g')\n .attr('class', function (d) { return 'hexbin zoom-' + d; });\n\n // enter + update\n const enterUpdate = enter.merge(join);\n\n // exit\n join.exit().remove();\n\n // add the hexagons to the select\n this._createHexagons(enterUpdate, data);\n\n }\n\n _linearlySpace(from: number, to: number, length: number): number[] {\n const step = (to - from) / Math.max(length - 1, 1);\n return Array.from({ length }, (_, i) => from + (i * step));\n }\n\n _createHexagons(g: d3.Selection<SVGGElement, number, SVGGElement, unknown>, data: HexbinData<Data>[]) {\n const thisLayer = this;\n\n // Create the bins using the hexbin layout\n\n // Generate the map bounds (to be used to filter the hexes to what is visible)\n const size = thisLayer._map.getSize();\n const bounds = thisLayer._map.getBounds().pad(thisLayer.options.radius * 2 / Math.max(size.x, size.y));\n\n const bins = thisLayer._hexLayout(data).filter(\n ({ x, y }) => bounds.contains(thisLayer._map.layerPointToLatLng(L.point(x, y)))\n );\n\n // Derive the extents of the data values for each dimension\n const colorExtent = thisLayer._getExtent(bins, thisLayer._fn.colorValue, thisLayer.options.colorScaleExtent);\n const radiusExtent = thisLayer._getExtent(bins, thisLayer._fn.radiusValue, thisLayer.options.radiusScaleExtent);\n const opacityExtent = thisLayer._getExtent(bins, thisLayer._fn.opacityValue, thisLayer.options.opacityScaleExtent);\n\n // Match the domain cardinality to that of the color range, to allow for a polylinear scale\n const colorDomain = this.options.colorDomain\n ?? thisLayer._linearlySpace(\n colorExtent[0],\n colorExtent[1],\n thisLayer._scale.color.range().length\n );\n const radiusDomain = this.options.radiusDomain || radiusExtent;\n\n // Set the scale domains\n thisLayer._scale.color.domain(colorDomain);\n thisLayer._scale.radius.domain(radiusDomain);\n thisLayer._scale.opacity.domain(opacityExtent);\n\n\n /*\n * Join\n * Join the Hexagons to the data\n * Use a deterministic id for tracking bins based on position\n */\n const join = g.selectAll<SVGGElement, HexbinBin<HexbinData<Data>>>('g.hexbin-container')\n .data(bins, ({ x, y }) => `${x}:${y}`);\n\n\n /*\n * Update\n * Set the fill and opacity on a transition\n * opacity is re-applied in case the enter transition was cancelled\n * the path is applied as well to resize the bins\n */\n join.select<SVGPathElement>('path.hexbin-hexagon')\n .transition().duration(thisLayer.options.duration)\n .attr('fill', thisLayer._fn.fill.bind(thisLayer))\n .attr('fill-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('stroke-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('d', (d) => {\n return thisLayer._hexLayout.hexagon(thisLayer._scale.radius(thisLayer._fn.radiusValue.call(thisLayer, d)));\n });\n\n\n /*\n * Enter\n * Establish the path, size, fill, and the initial opacity\n * Transition to the final opacity and size\n */\n const container = join.enter().append('g').attr('class', 'hexbin-container')\n .style('pointer-events', thisLayer.options.pointerEvents);\n\n\n container.on('mouseover', function (this: SVGGElement, d: MouseEvent, i) {\n // Bring container to foreground by re-appending it to the DOM\n select<SVGGElement, HexbinBin<HexbinData<Data>>>(this).raise();\n })\n\n const hexagons = container.append('path').attr('class', 'hexbin-hexagon')\n .attr('transform', ({ x, y }) => `translate(${x},${y})`)\n .attr('d', () => thisLayer._hexLayout.hexagon(thisLayer._scale.radius.range()[0]))\n // .attr('d', (data, length) => thisLayer._hexLayout.hexagon(thisLayer._scale.radius(data.length)))\n .attr('fill', thisLayer._fn.fill.bind(thisLayer))\n .attr('fill-opacity', 0.01)\n .attr('stroke-opacity', 0.01)\n .style('pointer-events', 'all');\n\n hexagons.transition().duration(thisLayer.options.duration)\n .attr('fill-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('stroke-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('d', (d) => thisLayer._hexLayout.hexagon(thisLayer._scale.radius(thisLayer._fn.radiusValue.call(thisLayer, d))))\n .style('pointer-events', 'all');\n\n // Grid\n const gridEnter = container.append('path').attr('class', 'hexbin-grid')\n .attr('transform', ({ x, y }) => `translate(${x},${y})`)\n .attr('d', () => thisLayer._hexLayout.hexagon(thisLayer.options.radius))\n .attr('fill', 'none')\n .attr('stroke', 'none')\n\n\n // Grid enter-update\n hexagons.on('mouseover', function (this: SVGPathElement, ev: MouseEvent, data) {\n if (thisLayer._tooltipOptions?.content) {\n thisLayer._tooltip\n ?.setContent(\n typeof thisLayer._tooltipOptions.content === \"function\"\n ? thisLayer._tooltipOptions.content(data)\n : thisLayer._tooltipOptions.content\n )\n .setLatLng(\n thisLayer._map.layerPointToLatLng(L.point(data.x, data.y))\n )\n .openOn(thisLayer._map);\n }\n thisLayer._hoverHandler.mouseover(this, thisLayer, ev, data);\n thisLayer._dispatch.call('mouseover', this, data, thisLayer, ev);\n this.classList.add('hover')\n })\n .on('mouseout', function (this: SVGPathElement, ev: MouseEvent, data) {\n thisLayer._tooltip?.close()\n thisLayer._hoverHandler.mouseout(this, thisLayer, ev, data);\n thisLayer._dispatch.call('mouseout', this, data, thisLayer, ev);\n this.classList.remove('hover')\n })\n .on('click', function (this, ev: MouseEvent, data) {\n const latLng = thisLayer._map.layerPointToLatLng(L.point(data.x, data.y));\n thisLayer._dispatch.call('click', this, data, latLng, thisLayer, ev);\n ev.stopPropagation()\n });\n\n\n // Exit\n const exit = join.exit();\n\n exit.select('path.hexbin-hexagon')\n .transition().duration(thisLayer.options.duration)\n .attr('fill-opacity', 0)\n .attr('stroke-opacity', 0)\n .attr('d', (d) => thisLayer._hexLayout.hexagon(0));\n\n exit.transition().duration(thisLayer.options.duration).remove();\n\n }\n\n _getExtent(\n bins: HexbinBin<HexbinData<Data>>[],\n valueFn: (d: HexbinBin<HexbinData<Data>>) => number,\n scaleExtent: [number, number | undefined]\n ): [number, number] {\n\n // Determine the extent of the values\n let ext = extent<HexbinBin<HexbinData<Data>>, number>(bins, valueFn.bind(this));\n // If either's null, initialize them to 0\n if (ext[0] === undefined || ext[1] === undefined) {\n ext = [0, 0]\n }\n\n // Now apply the optional clipping of the extent\n if (undefined != scaleExtent[0]) ext[0] = scaleExtent[0];\n if (undefined != scaleExtent[1]) ext[1] = scaleExtent[1];\n\n return ext as [number, number]\n }\n\n // ------------------------------------\n // Public API\n // ------------------------------------\n\n radius(): number;\n radius(v: number): this;\n radius(v?: number): this | number {\n if (v === undefined) return this.options.radius;\n\n this.options.radius = v;\n this._hexLayout.radius(v);\n\n if (null == this.options.radiusRange) {\n this._scale.radius.range([this.options.radius, this.options.radius]).clamp(true);\n }\n\n return this;\n }\n\n opacity(): number | [number, number];\n opacity(v: number | [number, number]): this;\n opacity(v?: number | [number, number]): this | number | [number, number] {\n if (v === undefined) return this.options.opacity\n this.options.opacity = v;\n this._scale.opacity.range(typeof v === 'number' ? [v, v] : v).clamp(true);\n\n return this;\n }\n\n duration(): number;\n duration(v: number): this;\n duration(v?: number): this | number {\n if (v === undefined) return this.options.duration\n this.options.duration = v\n\n return this;\n }\n\n colorScaleExtent(): [number, number | undefined];\n colorScaleExtent(v: [number, number | undefined]): this;\n colorScaleExtent(v?: [number, number | undefined]): this | [number, number | undefined] {\n if (v === undefined) { return this.options.colorScaleExtent; }\n this.options.colorScaleExtent = v;\n\n return this;\n }\n\n radiusScaleExtent(): [number, number | undefined];\n radiusScaleExtent(v: [number, number | undefined]): this;\n radiusScaleExtent(v?: [number, number | undefined]): this | [number, number | undefined] {\n if (v === undefined) { return this.options.radiusScaleExtent; }\n this.options.radiusScaleExtent = v;\n\n return this;\n }\n\n opacityScaleExtent(): [number, number | undefined];\n opacityScaleExtent(v: [number, number | undefined]): this;\n opacityScaleExtent(v?: [number, number | undefined]): this | [number, number | undefined] {\n if (v === undefined) { return this.options.opacityScaleExtent; }\n this.options.opacityScaleExtent = v;\n\n return this;\n }\n\n\n colorRange(): string[];\n colorRange(v: string[]): this;\n colorRange(v?: string[]): this | string[] {\n if (v === undefined) { return this.options.colorRange; }\n this.options.colorRange = v;\n this._scale.color.range(v);\n\n return this;\n }\n\n radiusRange(): [number, number] | null;\n radiusRange(v: [number, number] | null): this;\n radiusRange(v?: [number, number] | null): this | [number, number] | null {\n if (v === undefined) { return this.options.radiusRange; }\n this.options.radiusRange = v;\n this._scale.radius.range(this.options.radiusRange ?? [this.options.radius, this.options.radius]).clamp(true);\n\n return this;\n }\n\n colorScale(): d3.ScaleLinear<string, string>;\n colorScale(v: d3.ScaleLinear<string, string>): this;\n colorScale(v?: d3.ScaleLinear<string, string>) {\n if (v === undefined) return this._scale.color;\n this._scale.color = v;\n return this;\n }\n\n radiusScale(): d3.ScaleLinear<number, number>;\n radiusScale(v: d3.ScaleLinear<number, number>): this;\n radiusScale(v?: d3.ScaleLinear<number, number>): this | d3.ScaleLinear<number, number> {\n if (v === undefined) return this._scale.radius\n this._scale.radius = v;\n return this;\n }\n\n lng(): (d: Data) => number;\n lng(v: (d: Data) => number): this;\n lng(v?: (d: Data) => number) {\n if (v === undefined) { return this._fn.lng; }\n this._fn.lng = v;\n\n return this;\n }\n\n lat(): (d: Data) => number;\n lat(v: (d: Data) => number): this;\n lat(v?: (d: Data) => number) {\n if (v === undefined) { return this._fn.lat; }\n this._fn.lat = v;\n\n return this;\n }\n\n colorValue(): (d: HexbinData<Data>[]) => number;\n colorValue(v: (d: HexbinData<Data>[]) => number): this;\n colorValue(v?: (d: HexbinData<Data>[]) => number) {\n if (v === undefined) { return this._fn.colorValue; }\n this._fn.colorValue = v;\n\n return this;\n }\n\n radiusValue(): (d: HexbinData<Data>[]) => number;\n radiusValue(v: (d: HexbinData<Data>[]) => number): this;\n radiusValue(v?: (d: HexbinData<Data>[]) => number) {\n if (v === undefined) { return this._fn.radiusValue; }\n this._fn.radiusValue = v;\n\n return this;\n }\n\n fill(): (d: HexbinData<Data>[]) => string;\n fill(v: (d: HexbinData<Data>[]) => string): this;\n fill(v?: (d: HexbinData<Data>[]) => string) {\n if (v === undefined) { return this._fn.fill; }\n this._fn.fill = v;\n\n return this;\n }\n\n data(): Data[];\n data(v: Data extends L.LatLngExpression ? Data[] : never): this;\n data(v: Data[], accessor?: (d: Data) => L.LatLngExpression): this;\n\n // Implementation\n data(v?: Data[] | L.LatLngExpression[], accessor?: (d: Data) => L.LatLngExpression): this | Data[] {\n if (v === undefined) {\n return this._data;\n }\n\n if (!isLatLngExpression(v[0]) && !accessor) {\n console.error(\"Leaflet hexbin: data does not appear to be an array of L.LatLngExpression. You must provide an accessor function to convert the data to L.LatLngExpression\");\n }\n\n this._data = v as Data[] ?? []\n this._accessor = accessor ?? ((d: Data) => d as L.LatLngExpression)\n\n this.redraw();\n return this;\n }\n\n /*\n * Getter for the event dispatcher\n */\n dispatch() { return this._dispatch }\n\n hoverHandler(): HexbinHoverHandler<Data>;\n hoverHandler(v: HexbinHoverHandler<Data>): this;\n hoverHandler(v?: HexbinHoverHandler<Data>): this | HexbinHoverHandler<Data> {\n if (v === undefined) { return this._hoverHandler; }\n this._hoverHandler = (null != v) ? v : HexbinHoverHandler.none();\n\n this.redraw();\n\n return this;\n }\n\n // Cannot overload bindTooltip() with data dependant content\n tooltip(tooltip: TooltipOptions<Data>): this {\n this._tooltipOptions = tooltip;\n if (this._tooltip)\n this._tooltip.options = tooltip.options ?? {};\n else {\n this._tooltip = L.tooltip(tooltip.options)\n }\n return this\n }\n\n getTooltip(): L.Tooltip | undefined {\n return this._tooltip\n }\n\n bindTooltip(content: L.Tooltip | L.Content, options?: L.TooltipOptions): this {\n if (content instanceof L.Tooltip) {\n this._tooltip = content;\n // FIXME: weird bug likely coming from vue-leaflet were tooltip is not properly positioned\n // this._tooltip.options.offset[0] -= 5;\n if (this._map) {\n this._tooltip.setLatLng([0, 0]).addTo(this._map)\n }\n } else {\n this._tooltip = L.tooltip(options).setContent(content);\n }\n return this\n }\n\n unbindTooltip(): this {\n this._tooltip?.remove();\n this._tooltip = undefined;\n return this\n }\n\n /*\n * Returns an array of the points in the path, or nested arrays of points in case of multi-polyline.\n */\n getLatLngs() {\n const that = this;\n\n // Map the data into an array of latLngs using the configured lat/lng accessors\n return this._data.map(function (d) {\n return L.latLng(that._fn.lat(d), that._fn.lng(d));\n });\n }\n /*\n * Get path geometry as GeoJSON\n */\n toGeoJSON(): GeoJSON.Feature<GeoJSON.MultiPoint, L.LatLng> {\n return L.GeoJSON.getFeature<L.LatLng, GeoJSON.MultiPoint>(this, {\n type: 'MultiPoint',\n coordinates: L.GeoJSON.latLngsToCoords(this.getLatLngs(), 0)\n });\n }\n}\n\n/**\n * Factory function to instanciate a new hexbin layer\n */\nexport function hexbinLayer<Data = L.LatLngExpression>(options?: HexbinLayerConfig) {\n return new HexbinLayer<Data>(options);\n}\n\n\n"],"names":["HexbinHoverHandler","resizeFill","svg","hexLayer","event","data","d3","d","resizeScale","radiusScale","compound","handlers","none","HexbinHoverHandler$1","isLatLngExpression","L","HexbinLayer","options","val","scaleLinear","dispatch","hexbin","x","_","y","select","map","_a","latlng","that","coord","point","join","enterUpdate","from","to","length","step","i","g","thisLayer","size","bounds","bins","colorExtent","radiusExtent","opacityExtent","colorDomain","radiusDomain","container","hexagons","ev","_b","latLng","exit","valueFn","scaleExtent","ext","extent","v","accessor","tooltip","content","hexbinLayer"],"mappings":"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"}
|
package/dist/index.umd.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
(function(h,
|
1
|
+
(function(h,u){typeof exports=="object"&&typeof module<"u"?u(exports,require("d3"),require("d3-hexbin"),require("leaflet")):typeof define=="function"&&define.amd?define(["exports","d3","d3-hexbin","leaflet"],u):(h=typeof globalThis<"u"?globalThis:h||self,u(h["leaflet-hexbin"]={},h.d3,h["d3-hexbin"],h.L))})(this,function(h,u,R,j){"use strict";function E(s){const t=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(s){for(const i in s)if(i!=="default"){const o=Object.getOwnPropertyDescriptor(s,i);Object.defineProperty(t,i,o.get?o:{enumerable:!0,get:()=>s[i]})}}return t.default=s,Object.freeze(t)}const m=E(u),l=E(j);var y;(s=>{function t(){return{mouseover:function(p,n,a,d){m.select(p.parentElement).select("path.hexbin-hexagon").transition().duration(n.options.duration).attr("d",function(_){return n._hexLayout.hexagon(n.options.radius)})},mouseout:function(p,n,a,d){m.select(p.parentElement).select("path.hexbin-hexagon").transition().duration(n.options.duration).attr("d",function(_){return n._hexLayout.hexagon(n._scale.radius(n._fn.radiusValue.call(n,_)))})}}}s.resizeFill=t;function i(p=1.5){return{mouseover:function(n,a,d,f){m.select(n.parentElement).select("path.hexbin-hexagon").transition().duration(a.options.duration).attr("d",function(){return a._hexLayout.hexagon(a._scale.radius.range()[1]*p)})},mouseout:function(n,a,d,f){m.select(n.parentElement).select("path.hexbin-hexagon").transition().duration(a.options.duration).attr("d",L=>a._hexLayout.hexagon(a._scale.radius(a._fn.radiusValue.call(a,L))))}}}s.resizeScale=i;function o(p=[c()]){return{mouseover:function(n,a,d,f){p.forEach(_=>{_.mouseover(n,a,d,f)})},mouseout:function(n,a,d,f){p.forEach(_=>{_.mouseout(n,a,d,f)})}}}s.compound=o;function c(){return{mouseover:function(){},mouseout:function(){}}}s.none=c})(y||(y={}));const x=y;function H(s){return s instanceof l.LatLng||typeof s=="object"&&"lat"in s&&"lng"in s||Array.isArray(s)&&s.length===2&&typeof s[0]=="number"&&typeof s[1]=="number"}class S extends l.SVG{constructor(t){super(),this.options={radius:12,opacity:.6,duration:200,colorScaleExtent:[1,void 0],radiusScaleExtent:[1,void 0],opacityScaleExtent:[1,void 0],colorDomain:null,radiusDomain:null,colorRange:["#f7fbff","#08306b"],radiusRange:null,pointerEvents:"all",...l.Renderer.prototype.options,...l.Layer.prototype.options},this._fn={lng:i=>l.latLng(this._accessor(i)).lng,lat:i=>l.latLng(this._accessor(i)).lat,colorValue:i=>i.length,radiusValue:i=>i.length,opacityValue:i=>i.length,fill:i=>{const o=this._fn.colorValue(i);return o!=null?this._scale.color(o):"none"}},this._scale={color:u.scaleLinear(),radius:u.scaleLinear(),opacity:u.scaleLinear()},this._dispatch=u.dispatch("mouseover","mouseout","click"),this._hoverHandler=x.none(),this._hexLayout=R.hexbin().radius(this.options.radius).x(({point:[i,o]})=>i).y(({point:[i,o]})=>o),this._data=Array(),this._tooltipOptions={},this.options={...this.options,...t},this._scale.color.range(this.options.colorRange).clamp(!0),this._scale.radius.range(this.options.radiusRange??[this.options.radius,this.options.radius]).clamp(!0),this._scale.opacity.range(typeof this.options.opacity=="number"?[this.options.opacity,this.options.opacity]:this.options.opacity).clamp(!0)}_accessor(t){return t}_initContainer(){super._initContainer(),this._d3Container=u.select(this._container).select("g")}onAdd(t){var i;return super.onAdd(t),this._map=t,(i=this._tooltip)==null||i.setLatLng([0,0]).addTo(t),t.on("moveend",this.redraw,this),this.redraw(),this}_project(t){const{x:i,y:o}=this._map.latLngToLayerPoint(t);return[i,o]}onRemove(t){return this._destroyContainer(),t.off("moveend",this.redraw,this),this}_destroyContainer(){u.select(this._container).remove()}redraw(){const t=this;if(!t._map)return;const i=t._data.map(n=>{const a=t._accessor(n),d=t._project(a);return{coord:a,point:d,data:n}}),o=this._d3Container.selectAll("g.hexbin").data([this._map.getZoom()],n=>n),p=o.enter().append("g").attr("class",function(n){return"hexbin zoom-"+n}).merge(o);o.exit().remove(),this._createHexagons(p,i)}_linearlySpace(t,i,o){const c=(i-t)/Math.max(o-1,1);return Array.from({length:o},(p,n)=>t+n*c)}_createHexagons(t,i){const o=this,c=o._map.getSize(),p=o._map.getBounds().pad(o.options.radius*2/Math.max(c.x,c.y)),n=o._hexLayout(i).filter(({x:e,y:r})=>p.contains(o._map.layerPointToLatLng(l.point(e,r)))),a=o._getExtent(n,o._fn.colorValue,o.options.colorScaleExtent),d=o._getExtent(n,o._fn.radiusValue,o.options.radiusScaleExtent),f=o._getExtent(n,o._fn.opacityValue,o.options.opacityScaleExtent),_=this.options.colorDomain??o._linearlySpace(a[0],a[1],o._scale.color.range().length),L=this.options.radiusDomain||d;o._scale.color.domain(_),o._scale.radius.domain(L),o._scale.opacity.domain(f);const b=t.selectAll("g.hexbin-container").data(n,({x:e,y:r})=>`${e}:${r}`);b.select("path.hexbin-hexagon").transition().duration(o.options.duration).attr("fill",o._fn.fill.bind(o)).attr("fill-opacity",e=>o._scale.opacity(o._fn.opacityValue.call(o,e))).attr("stroke-opacity",e=>o._scale.opacity(o._fn.opacityValue.call(o,e))).attr("d",e=>o._hexLayout.hexagon(o._scale.radius(o._fn.radiusValue.call(o,e))));const v=b.enter().append("g").attr("class","hexbin-container").style("pointer-events",o.options.pointerEvents);v.on("mouseover",function(e,r){u.select(this).raise()});const V=v.append("path").attr("class","hexbin-hexagon").attr("transform",({x:e,y:r})=>`translate(${e},${r})`).attr("d",()=>o._hexLayout.hexagon(o._scale.radius.range()[0])).attr("fill",o._fn.fill.bind(o)).attr("fill-opacity",.01).attr("stroke-opacity",.01).style("pointer-events","all");V.transition().duration(o.options.duration).attr("fill-opacity",e=>o._scale.opacity(o._fn.opacityValue.call(o,e))).attr("stroke-opacity",e=>o._scale.opacity(o._fn.opacityValue.call(o,e))).attr("d",e=>o._hexLayout.hexagon(o._scale.radius(o._fn.radiusValue.call(o,e)))).style("pointer-events","all"),v.append("path").attr("class","hexbin-grid").attr("transform",({x:e,y:r})=>`translate(${e},${r})`).attr("d",()=>o._hexLayout.hexagon(o.options.radius)).attr("fill","none").attr("stroke","none"),V.on("mouseover",function(e,r){var g,T;(g=o._tooltipOptions)!=null&&g.content&&((T=o._tooltip)==null||T.setContent(typeof o._tooltipOptions.content=="function"?o._tooltipOptions.content(r):o._tooltipOptions.content).setLatLng(o._map.layerPointToLatLng(l.point(r.x,r.y))).openOn(o._map)),o._hoverHandler.mouseover(this,o,e,r),o._dispatch.call("mouseover",this,r,o,e),this.classList.add("hover")}).on("mouseout",function(e,r){var g;(g=o._tooltip)==null||g.close(),o._hoverHandler.mouseout(this,o,e,r),o._dispatch.call("mouseout",this,r,o,e),this.classList.remove("hover")}).on("click",function(e,r){const g=o._map.layerPointToLatLng(l.point(r.x,r.y));o._dispatch.call("click",this,r,g,o,e),e.stopPropagation()});const O=b.exit();O.select("path.hexbin-hexagon").transition().duration(o.options.duration).attr("fill-opacity",0).attr("stroke-opacity",0).attr("d",e=>o._hexLayout.hexagon(0)),O.transition().duration(o.options.duration).remove()}_getExtent(t,i,o){let c=u.extent(t,i.bind(this));return(c[0]===void 0||c[1]===void 0)&&(c=[0,0]),o[0]!=null&&(c[0]=o[0]),o[1]!=null&&(c[1]=o[1]),c}radius(t){return t===void 0?this.options.radius:(this.options.radius=t,this._hexLayout.radius(t),this.options.radiusRange==null&&this._scale.radius.range([this.options.radius,this.options.radius]).clamp(!0),this)}opacity(t){return t===void 0?this.options.opacity:(this.options.opacity=t,this._scale.opacity.range(typeof t=="number"?[t,t]:t).clamp(!0),this)}duration(t){return t===void 0?this.options.duration:(this.options.duration=t,this)}colorScaleExtent(t){return t===void 0?this.options.colorScaleExtent:(this.options.colorScaleExtent=t,this)}radiusScaleExtent(t){return t===void 0?this.options.radiusScaleExtent:(this.options.radiusScaleExtent=t,this)}opacityScaleExtent(t){return t===void 0?this.options.opacityScaleExtent:(this.options.opacityScaleExtent=t,this)}colorRange(t){return t===void 0?this.options.colorRange:(this.options.colorRange=t,this._scale.color.range(t),this)}radiusRange(t){return t===void 0?this.options.radiusRange:(this.options.radiusRange=t,this._scale.radius.range(this.options.radiusRange??[this.options.radius,this.options.radius]).clamp(!0),this)}colorScale(t){return t===void 0?this._scale.color:(this._scale.color=t,this)}radiusScale(t){return t===void 0?this._scale.radius:(this._scale.radius=t,this)}lng(t){return t===void 0?this._fn.lng:(this._fn.lng=t,this)}lat(t){return t===void 0?this._fn.lat:(this._fn.lat=t,this)}colorValue(t){return t===void 0?this._fn.colorValue:(this._fn.colorValue=t,this)}radiusValue(t){return t===void 0?this._fn.radiusValue:(this._fn.radiusValue=t,this)}fill(t){return t===void 0?this._fn.fill:(this._fn.fill=t,this)}data(t,i){return t===void 0?this._data:(!H(t[0])&&!i&&console.error("Leaflet hexbin: data does not appear to be an array of L.LatLngExpression. You must provide an accessor function to convert the data to L.LatLngExpression"),this._data=t??[],this._accessor=i??(o=>o),this.redraw(),this)}dispatch(){return this._dispatch}hoverHandler(t){return t===void 0?this._hoverHandler:(this._hoverHandler=t??x.none(),this.redraw(),this)}tooltip(t){return this._tooltipOptions=t,this._tooltip?this._tooltip.options=t.options??{}:this._tooltip=l.tooltip(t.options),this}getTooltip(){return this._tooltip}bindTooltip(t,i){return t instanceof l.Tooltip?(this._tooltip=t,this._map&&this._tooltip.setLatLng([0,0]).addTo(this._map)):this._tooltip=l.tooltip(i).setContent(t),this}unbindTooltip(){var t;return(t=this._tooltip)==null||t.remove(),this._tooltip=void 0,this}getLatLngs(){const t=this;return this._data.map(function(i){return l.latLng(t._fn.lat(i),t._fn.lng(i))})}toGeoJSON(){return l.GeoJSON.getFeature(this,{type:"MultiPoint",coordinates:l.GeoJSON.latLngsToCoords(this.getLatLngs(),0)})}}function k(s){return new S(s)}h.HexbinHoverHandler=x,h.HexbinLayer=S,h.hexbinLayer=k,Object.defineProperty(h,Symbol.toStringTag,{value:"Module"})});
|
2
2
|
//# sourceMappingURL=index.umd.js.map
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "leaflet-hexbin",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.1",
|
4
4
|
"private": false,
|
5
5
|
"type": "module",
|
6
6
|
"license": "MIT",
|
@@ -42,9 +42,9 @@
|
|
42
42
|
"@types/d3-hexbin": "^0.2.5",
|
43
43
|
"@types/jsdom": "^21.1.7",
|
44
44
|
"@types/leaflet": "^1.9.16",
|
45
|
-
"@types/node": "^22.
|
45
|
+
"@types/node": "^22.13.1",
|
46
46
|
"@vitest/eslint-plugin": "1.1.25",
|
47
|
-
"eslint": "^9.
|
47
|
+
"eslint": "^9.20.0",
|
48
48
|
"jiti": "^2.4.2",
|
49
49
|
"jsdom": "^26.0.0",
|
50
50
|
"npm-run-all2": "^7.0.2",
|