leaflet-hexbin 0.1.5 → 0.2.0

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/dist/index.es.js CHANGED
@@ -1,53 +1,53 @@
1
- import * as f from "d3";
2
- import { scaleLinear as y, dispatch as R, select as L, extent as T } from "d3";
3
- import { hexbin as w } from "d3-hexbin";
4
- import * as c from "leaflet";
1
+ import * as _ from "d3";
2
+ import { scaleLinear as x, dispatch as w, select as L, extent as R } from "d3";
3
+ import { hexbin as T } from "d3-hexbin";
4
+ import * as u from "leaflet";
5
5
  var v;
6
- ((r) => {
7
- function o() {
6
+ ((a) => {
7
+ function t() {
8
8
  return {
9
- mouseover: function(u, n, a, p) {
10
- f.select(u.parentElement).select("path.hexbin-hexagon").transition().duration(n.options.duration).attr("d", function(h) {
9
+ mouseover: function(l, n, e, p) {
10
+ _.select(l.parentElement).select("path.hexbin-hexagon").transition().duration(n.options.duration).attr("d", function(h) {
11
11
  return n._hexLayout.hexagon(n.options.radius);
12
12
  });
13
13
  },
14
- mouseout: function(u, n, a, p) {
15
- f.select(u.parentElement).select("path.hexbin-hexagon").transition().duration(n.options.duration).attr("d", function(h) {
14
+ mouseout: function(l, n, e, p) {
15
+ _.select(l.parentElement).select("path.hexbin-hexagon").transition().duration(n.options.duration).attr("d", function(h) {
16
16
  return n._hexLayout.hexagon(n.radiusScale()(n.radiusValue()(h)));
17
17
  });
18
18
  }
19
19
  };
20
20
  }
21
- r.resizeFill = o;
22
- function i(u = 1.5) {
21
+ a.resizeFill = t;
22
+ function i(l = 1.5) {
23
23
  return {
24
- mouseover: function(n, a, p, d) {
25
- f.select(n.parentElement).select("path.hexbin-hexagon").transition().duration(a.options.duration).attr("d", function() {
26
- return a._hexLayout.hexagon(a.radiusScale().range()[1] * u);
24
+ mouseover: function(n, e, p, d) {
25
+ _.select(n.parentElement).select("path.hexbin-hexagon").transition().duration(e.options.duration).attr("d", function() {
26
+ return e._hexLayout.hexagon(e.radiusScale().range()[1] * l);
27
27
  });
28
28
  },
29
- mouseout: function(n, a, p, d) {
30
- f.select(n.parentElement).select("path.hexbin-hexagon").transition().duration(a.options.duration).attr("d", (m) => a._hexLayout.hexagon(a.radiusScale()(a.radiusValue()(m))));
29
+ mouseout: function(n, e, p, d) {
30
+ _.select(n.parentElement).select("path.hexbin-hexagon").transition().duration(e.options.duration).attr("d", (f) => e._hexLayout.hexagon(e.radiusScale()(e.radiusValue()(f))));
31
31
  }
32
32
  };
33
33
  }
34
- r.resizeScale = i;
35
- function t(u = [l()]) {
34
+ a.resizeScale = i;
35
+ function o(l = [c()]) {
36
36
  return {
37
- mouseover: function(n, a, p, d) {
38
- u.forEach((h) => {
39
- h.mouseover(n, a, p, d);
37
+ mouseover: function(n, e, p, d) {
38
+ l.forEach((h) => {
39
+ h.mouseover(n, e, p, d);
40
40
  });
41
41
  },
42
- mouseout: function(n, a, p, d) {
43
- u.forEach((h) => {
44
- h.mouseout(n, a, p, d);
42
+ mouseout: function(n, e, p, d) {
43
+ l.forEach((h) => {
44
+ h.mouseout(n, e, p, d);
45
45
  });
46
46
  }
47
47
  };
48
48
  }
49
- r.compound = t;
50
- function l() {
49
+ a.compound = o;
50
+ function c() {
51
51
  return {
52
52
  mouseover: function() {
53
53
  },
@@ -55,22 +55,22 @@ var v;
55
55
  }
56
56
  };
57
57
  }
58
- r.none = l;
58
+ a.none = c;
59
59
  })(v || (v = {}));
60
- const V = v;
61
- function O(r) {
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";
60
+ const B = v;
61
+ function O(a) {
62
+ return a instanceof u.LatLng || typeof a == "object" && "lat" in a && "lng" in a || Array.isArray(a) && a.length === 2 && typeof a[0] == "number" && typeof a[1] == "number";
63
63
  }
64
- const C = (r, o) => {
64
+ const C = (a, t) => {
65
65
  let i;
66
- return function(...t) {
66
+ return function(...o) {
67
67
  clearTimeout(i), i = setTimeout(() => {
68
- r(...t);
69
- }, o);
68
+ a(...o);
69
+ }, t);
70
70
  };
71
71
  };
72
- class H extends c.SVG {
73
- constructor(o) {
72
+ class k extends u.SVG {
73
+ constructor(t) {
74
74
  super(), this.options = {
75
75
  radius: 12,
76
76
  opacity: 0.6,
@@ -84,28 +84,27 @@ class H extends c.SVG {
84
84
  radiusRange: null,
85
85
  pointerEvents: "all",
86
86
  noRedraw: !1,
87
+ colorBinding: (i) => i.length,
88
+ radiusBinding: (i) => i.length,
89
+ opacityBinding: (i) => i.length,
90
+ fill: (i) => {
91
+ const o = this.options.colorBinding(i);
92
+ return o != null ? this._scale.color(o) : "none";
93
+ },
87
94
  // Handle parent default options
88
95
  // ...L.SVG.prototype.options,
89
- ...c.Renderer.prototype.options,
90
- ...c.Layer.prototype.options
91
- }, this._fn = {
92
- colorValue: (i) => i.length,
93
- radiusValue: (i) => i.length,
94
- opacityValue: (i) => i.length,
95
- fill: (i) => {
96
- const t = this._fn.colorValue(i);
97
- return t != null ? this._scale.color(t) : "none";
98
- }
96
+ ...u.Renderer.prototype.options,
97
+ ...u.Layer.prototype.options
99
98
  }, this._scale = {
100
- color: y(),
101
- radius: y(),
102
- opacity: y()
103
- }, this._dispatch = R("mouseover", "mouseout", "click"), this._hoverHandler = V.none(), this._hexLayout = w().radius(this.options.radius).x(({ point: { x: i } }) => i).y(({ point: { y: i } }) => i), this._data = Array(), this._tooltipOptions = {}, this.options = { ...this.options, ...o }, 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(
99
+ color: x(),
100
+ radius: x(),
101
+ opacity: x()
102
+ }, this._dispatch = w("mouseover", "mouseout", "click", "draw"), this._hoverHandler = B.none(), this._hexLayout = T().radius(this.options.radius).x(({ point: { x: i } }) => i).y(({ point: { y: i } }) => i), 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(
104
103
  typeof this.options.opacity == "number" ? [this.options.opacity, this.options.opacity] : this.options.opacity
105
104
  ).clamp(!0);
106
105
  }
107
- _accessor(o) {
108
- return o;
106
+ _accessor(t) {
107
+ return t;
109
108
  }
110
109
  /**
111
110
  * Create the SVG container for the hexbins
@@ -118,16 +117,16 @@ class H extends c.SVG {
118
117
  * Callback made by Leaflet when the layer is added to the map
119
118
  * @param map Reference to the map to which this layer has been added
120
119
  */
121
- onAdd(o) {
120
+ onAdd(t) {
122
121
  var i;
123
- return super.onAdd(o), this._map = o, (i = this._tooltip) == null || i.setLatLng([0, 0]).addTo(o), o.on("moveend", C(() => this.redraw(), 100)), this.redraw(), this;
122
+ return super.onAdd(t), this._map = t, (i = this._tooltip) == null || i.setLatLng([0, 0]).addTo(t), t.on("moveend", C(() => this.redraw(), 100)), this.redraw(), this;
124
123
  }
125
124
  /**
126
125
  * Callback made by Leaflet when the layer is removed from the map
127
126
  * @param map Reference to the map from which this layer is being removed
128
127
  */
129
- onRemove(o) {
130
- return this._destroyContainer(), o.off("moveend", this.redraw, this), this;
128
+ onRemove(t) {
129
+ return this._destroyContainer(), t.off("moveend", this.redraw, this), this;
131
130
  }
132
131
  /**
133
132
  * Clean up the svg container
@@ -139,99 +138,101 @@ class H extends c.SVG {
139
138
  * (Re)draws the hexbins data on the container
140
139
  */
141
140
  redraw() {
142
- const o = this;
143
- if (!o._map) return;
144
- const i = o._data.map((n) => {
145
- const a = o._accessor(n), p = o._map.latLngToLayerPoint(a);
146
- return { coord: a, point: p, data: n };
147
- }), t = this._d3Container.selectAll("g.hexbin").data([this._map.getZoom()], (n) => n), u = t.enter().append("g").attr("class", function(n) {
141
+ const t = this;
142
+ if (!t._map) return;
143
+ const i = t._data.map((n) => {
144
+ const e = t._accessor(n), p = t._map.latLngToLayerPoint(e);
145
+ return { coord: e, point: p, data: n };
146
+ }), o = this._d3Container.selectAll("g.hexbin").data([this._map.getZoom()], (n) => n), l = o.enter().append("g").attr("class", function(n) {
148
147
  return "hexbin zoom-" + n;
149
- }).merge(t);
150
- t.exit().remove(), this._createHexagons(u, i);
151
- }
152
- _linearlySpace(o, i, t) {
153
- const l = (i - o) / Math.max(t - 1, 1);
154
- return Array.from({ length: t }, (u, n) => o + n * l);
155
- }
156
- _createHexagons(o, i) {
157
- const t = this, l = t._map.getSize(), u = t._map.getBounds().pad(t.options.radius * 2 / Math.max(l.x, l.y)), n = t._hexLayout.radius(this.options.radius)(i).filter(
158
- ({ x: e, y: s }) => u.contains(t._map.layerPointToLatLng(c.point(e, s)))
159
- ), a = t._getExtent(n, t._fn.colorValue, t.options.colorScaleExtent), p = t._getExtent(n, t._fn.radiusValue, t.options.radiusScaleExtent), d = t._getExtent(n, t._fn.opacityValue, t.options.opacityScaleExtent), h = this.options.colorDomain ?? t._linearlySpace(
160
- a[0],
161
- a[1],
162
- t._scale.color.range().length
163
- ), m = this.options.radiusDomain || p;
164
- t._scale.color.domain(h), t._scale.radius.domain(m), t._scale.opacity.domain(d);
165
- const g = o.selectAll("g.hexbin-container").data(n, ({ x: e, y: s }) => `${e}:${s}`);
166
- g.select("path.hexbin-hexagon").transition().duration(t.options.duration).attr("fill", t._fn.fill.bind(t)).attr("fill-opacity", (e) => t._scale.opacity(t._fn.opacityValue.call(t, e))).attr("stroke-opacity", (e) => t._scale.opacity(t._fn.opacityValue.call(t, e))).attr("d", (e) => t._hexLayout.hexagon(t._scale.radius(t._fn.radiusValue.call(t, e))));
167
- const x = g.enter().append("g").attr("class", "hexbin-container").style("pointer-events", t.options.pointerEvents);
168
- x.on("mouseover", function(e, s) {
148
+ }).merge(o);
149
+ o.exit().remove(), this._createHexagons(l, i);
150
+ }
151
+ _linearlySpace(t, i, o) {
152
+ const c = (i - t) / Math.max(o - 1, 1);
153
+ return Array.from({ length: o }, (l, n) => t + n * c);
154
+ }
155
+ _createHexagons(t, i) {
156
+ const o = this, c = o._map.getSize(), l = o._map.getBounds().pad(o.options.radius * 2 / Math.max(c.x, c.y)), n = o._hexLayout.radius(this.options.radius)(i).filter(
157
+ ({ x: s, y: r }) => l.contains(o._map.layerPointToLatLng(u.point(s, r)))
158
+ ), e = o._getExtent(n, o.options.colorBinding, o.options.colorScaleExtent), p = o._getExtent(n, o.options.radiusBinding, o.options.radiusScaleExtent), d = o._getExtent(n, o.options.opacityBinding, o.options.opacityScaleExtent), h = this.options.colorDomain ?? o._linearlySpace(
159
+ e[0],
160
+ e[1],
161
+ o._scale.color.range().length
162
+ ), f = this.options.radiusDomain || p;
163
+ o._scale.color.domain(h), o._scale.radius.domain(f), o._scale.opacity.domain(d);
164
+ const m = t.selectAll("g.hexbin-container").data(n, ({ x: s, y: r }) => `${s}:${r}`);
165
+ m.select("path.hexbin-hexagon").transition().duration(o.options.duration).attr("fill", o.options.fill.bind(o)).attr("fill-opacity", (s) => o._scale.opacity(o.options.opacityBinding.call(o, s))).attr("stroke-opacity", (s) => o._scale.opacity(o.options.opacityBinding.call(o, s))).attr("d", (s) => o._hexLayout.hexagon(o._scale.radius(o.options.radiusBinding.call(o, s))));
166
+ const y = m.enter().append("g").attr("class", "hexbin-container").style("pointer-events", o.options.pointerEvents);
167
+ y.on("mouseover", function(s, r) {
169
168
  L(this).raise();
170
169
  });
171
- const b = x.append("path").attr("class", "hexbin-hexagon").attr("transform", ({ x: e, y: s }) => `translate(${e},${s})`).attr("d", () => t._hexLayout.hexagon(t._scale.radius.range()[0])).attr("fill", t._fn.fill.bind(t)).attr("fill-opacity", 0.01).attr("stroke-opacity", 0.01).style("pointer-events", "all");
172
- b.transition().duration(t.options.duration).attr("fill-opacity", (e) => t._scale.opacity(t._fn.opacityValue.call(t, e))).attr("stroke-opacity", (e) => t._scale.opacity(t._fn.opacityValue.call(t, e))).attr("d", (e) => t._hexLayout.hexagon(t._scale.radius(t._fn.radiusValue.call(t, e)))).style("pointer-events", "all"), x.append("path").attr("class", "hexbin-grid").attr("transform", ({ x: e, y: s }) => `translate(${e},${s})`).attr("d", () => t._hexLayout.hexagon(t.options.radius)).attr("fill", "none").attr("stroke", "none"), b.on("mouseover", function(e, s) {
173
- var _, S;
174
- (_ = t._tooltipOptions) != null && _.content && ((S = t._tooltip) == null || S.setContent(
175
- typeof t._tooltipOptions.content == "function" ? t._tooltipOptions.content(s) : t._tooltipOptions.content
170
+ const b = y.append("path").attr("class", "hexbin-hexagon").attr("transform", ({ x: s, y: r }) => `translate(${s},${r})`).attr("d", () => o._hexLayout.hexagon(o._scale.radius.range()[0])).attr("fill", o.options.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", (s) => o._scale.opacity(o.options.opacityBinding.call(o, s))).attr("stroke-opacity", (s) => o._scale.opacity(o.options.opacityBinding.call(o, s))).attr("d", (s) => o._hexLayout.hexagon(o._scale.radius(o.options.radiusBinding.call(o, s)))).style("pointer-events", "all"), y.append("path").attr("class", "hexbin-grid").attr("transform", ({ x: s, y: r }) => `translate(${s},${r})`).attr("d", () => o._hexLayout.hexagon(o.options.radius)).attr("fill", "none").attr("stroke", "none"), b.on("mouseover", function(s, r) {
172
+ var g, S;
173
+ (g = o._tooltipOptions) != null && g.content && ((S = o._tooltip) == null || S.setContent(
174
+ typeof o._tooltipOptions.content == "function" ? o._tooltipOptions.content(r) : o._tooltipOptions.content
176
175
  ).setLatLng(
177
- t._map.layerPointToLatLng(c.point(s.x, s.y))
178
- ).openOn(t._map)), t._hoverHandler.mouseover(this, t, e, s), t._dispatch.call("mouseover", this, s, t, e), this.classList.add("hover");
179
- }).on("mouseout", function(e, s) {
180
- var _;
181
- (_ = t._tooltip) == null || _.close(), t._hoverHandler.mouseout(this, t, e, s), t._dispatch.call("mouseout", this, s, t, e), this.classList.remove("hover");
182
- }).on("click", function(e, s) {
183
- const _ = t._map.layerPointToLatLng(c.point(s.x, s.y));
184
- t._dispatch.call("click", this, s, _, t, e), e.stopPropagation();
176
+ o._map.layerPointToLatLng(u.point(r.x, r.y))
177
+ ).openOn(o._map)), o._hoverHandler.mouseover(this, o, s, r), o._dispatch.call("mouseover", this, r, o, s), this.classList.add("hover");
178
+ }).on("mouseout", function(s, r) {
179
+ var g;
180
+ (g = o._tooltip) == null || g.close(), o._hoverHandler.mouseout(this, o, s, r), o._dispatch.call("mouseout", this, r, o, s), this.classList.remove("hover");
181
+ }).on("click", function(s, r) {
182
+ const g = o._map.layerPointToLatLng(u.point(r.x, r.y));
183
+ o._dispatch.call("click", this, r, g, o, s), s.stopPropagation();
184
+ });
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", (s) => o._hexLayout.hexagon(0)), E.transition().duration(o.options.duration).remove(), o._dispatch.call("draw", o, i, o, {
187
+ colorExtent: e
185
188
  });
186
- const E = g.exit();
187
- E.select("path.hexbin-hexagon").transition().duration(t.options.duration).attr("fill-opacity", 0).attr("stroke-opacity", 0).attr("d", (e) => t._hexLayout.hexagon(0)), E.transition().duration(t.options.duration).remove();
188
189
  }
189
- _getExtent(o, i, t) {
190
- let l = T(o, i.bind(this));
191
- return (l[0] === void 0 || l[1] === void 0) && (l = [0, 0]), t[0] != null && (l[0] = t[0]), t[1] != null && (l[1] = t[1]), l;
190
+ _getExtent(t, i, o) {
191
+ let c = R(t, i.bind(this));
192
+ 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;
192
193
  }
193
- radius(o) {
194
- return o === void 0 ? this.options.radius : (this.options.radius = o, this._hexLayout.radius(o), this.options.radiusRange == null && this._scale.radius.range([this.options.radius, this.options.radius]).clamp(!0), this);
194
+ radius(t) {
195
+ 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);
195
196
  }
196
- opacity(o) {
197
- return o === void 0 ? this.options.opacity : (this.options.opacity = o, this._scale.opacity.range(typeof o == "number" ? [o, o] : o).clamp(!0), this);
197
+ opacity(t) {
198
+ return t === void 0 ? this.options.opacity : (this.options.opacity = t, this._scale.opacity.range(typeof t == "number" ? [t, t] : t).clamp(!0), this);
198
199
  }
199
- duration(o) {
200
- return o === void 0 ? this.options.duration : (this.options.duration = o, this);
200
+ duration(t) {
201
+ return t === void 0 ? this.options.duration : (this.options.duration = t, this);
201
202
  }
202
- colorScaleExtent(o) {
203
- return o === void 0 ? this.options.colorScaleExtent : (this.options.colorScaleExtent = o, this);
203
+ colorScaleExtent(t) {
204
+ return t === void 0 ? this.options.colorScaleExtent : (this.options.colorScaleExtent = t, this);
204
205
  }
205
- radiusScaleExtent(o) {
206
- return o === void 0 ? this.options.radiusScaleExtent : (this.options.radiusScaleExtent = o, this);
206
+ radiusScaleExtent(t) {
207
+ return t === void 0 ? this.options.radiusScaleExtent : (this.options.radiusScaleExtent = t, this);
207
208
  }
208
- opacityScaleExtent(o) {
209
- return o === void 0 ? this.options.opacityScaleExtent : (this.options.opacityScaleExtent = o, this);
209
+ opacityScaleExtent(t) {
210
+ return t === void 0 ? this.options.opacityScaleExtent : (this.options.opacityScaleExtent = t, this);
210
211
  }
211
- colorRange(o) {
212
- return o === void 0 ? this.options.colorRange : (this.options.colorRange = o, this._scale.color.range(o), this);
212
+ colorRange(t) {
213
+ return t === void 0 ? this.options.colorRange : (this.options.colorRange = t, this._scale.color.range(t), this);
213
214
  }
214
- radiusRange(o) {
215
- return o === void 0 ? this.options.radiusRange : (this.options.radiusRange = o, this._scale.radius.range(this.options.radiusRange ?? [this.options.radius, this.options.radius]).clamp(!0), this);
215
+ radiusRange(t) {
216
+ 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);
216
217
  }
217
- colorScale(o) {
218
- return o === void 0 ? this._scale.color : (this._scale.color = o, this);
218
+ colorScale(t) {
219
+ return t === void 0 ? this._scale.color : (this._scale.color = t, this);
219
220
  }
220
- radiusScale(o) {
221
- return o === void 0 ? this._scale.radius : (this._scale.radius = o, this);
221
+ radiusScale(t) {
222
+ return t === void 0 ? this._scale.radius : (this._scale.radius = t, this);
222
223
  }
223
- colorValue(o) {
224
- return o === void 0 ? this._fn.colorValue : (this._fn.colorValue = o, this);
224
+ colorValue(t) {
225
+ return t === void 0 ? this.options.colorBinding : (this.options.colorBinding = t, this);
225
226
  }
226
- radiusValue(o) {
227
- return o === void 0 ? this._fn.radiusValue : (this._fn.radiusValue = o, this);
227
+ radiusValue(t) {
228
+ return t === void 0 ? this.options.radiusBinding : (this.options.radiusBinding = t, this);
228
229
  }
229
- fill(o) {
230
- return o === void 0 ? this._fn.fill : (this._fn.fill = o, this);
230
+ fill(t) {
231
+ return t === void 0 ? this.options.fill : (this.options.fill = t, this);
231
232
  }
232
233
  // Implementation
233
- data(o, i) {
234
- return o === void 0 ? this._data : (!O(o[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 = o ?? [], this._accessor = i ?? ((t) => t), this.options.noRedraw || this.redraw(), this);
234
+ data(t, i) {
235
+ return t === void 0 ? this._data : (!O(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.options.noRedraw || this.redraw(), this);
235
236
  }
236
237
  accessor() {
237
238
  return this._accessor;
@@ -242,15 +243,27 @@ class H extends c.SVG {
242
243
  dispatch() {
243
244
  return this._dispatch;
244
245
  }
245
- hoverHandler(o) {
246
- return o === void 0 ? this._hoverHandler : (this._hoverHandler = o ?? V.none(), this.options.noRedraw || this.redraw(), this);
246
+ hoverHandler(t) {
247
+ return t === void 0 ? this._hoverHandler : (this._hoverHandler = t ?? B.none(), this.options.noRedraw || this.redraw(), this);
248
+ }
249
+ colorBinding(t) {
250
+ return t === void 0 ? this.options.colorBinding : (this.options.colorBinding = t, this.options.noRedraw || this.redraw(), this);
251
+ }
252
+ radiusBinding(t) {
253
+ return t === void 0 ? this.options.radiusBinding : (this.options.radiusBinding = t, this.options.noRedraw || this.redraw(), this);
254
+ }
255
+ opacityBinding(t) {
256
+ return t === void 0 ? this.options.opacityBinding : (this.options.opacityBinding = t, this.options.noRedraw || this.redraw(), this);
257
+ }
258
+ fillColor(t) {
259
+ return t === void 0 ? this.options.fill : (this.options.fill = t, this.options.noRedraw || this.redraw(), this);
247
260
  }
248
261
  /**
249
262
  * Get or set the tooltip content and options for the hexbin layer.
250
263
  */
251
264
  // Cannot overload bindTooltip() with data dependant content
252
- tooltip(o) {
253
- return this._tooltipOptions = o, this._tooltip ? this._tooltip.options = o.options ?? {} : this._tooltip = c.tooltip(o.options), this;
265
+ tooltip(t) {
266
+ return this._tooltipOptions = t, this._tooltip ? this._tooltip.options = t.options ?? {} : this._tooltip = u.tooltip(t.options), this;
254
267
  }
255
268
  /**
256
269
  * Get the tooltip instance attached to the hexbin layer
@@ -262,38 +275,59 @@ class H extends c.SVG {
262
275
  * Bind a tooltip to the hexbin layer with the provided content and options.
263
276
  * Useful to bind an existing tooltip instance to the hexbin layer.
264
277
  */
265
- bindTooltip(o, i) {
266
- return o instanceof c.Tooltip ? (this._tooltip = o, this._map && this._tooltip.setLatLng([0, 0]).addTo(this._map)) : this._tooltip = c.tooltip(i).setContent(o), this;
278
+ bindTooltip(t, i) {
279
+ return t instanceof u.Tooltip ? (this._tooltip = t, this._map && this._tooltip.setLatLng([0, 0]).addTo(this._map)) : this._tooltip = u.tooltip(i).setContent(t), this;
267
280
  }
268
281
  /**
269
282
  * Unbind the tooltip from the hexbin layer
270
283
  */
271
284
  unbindTooltip() {
272
- var o;
273
- return (o = this._tooltip) == null || o.remove(), this._tooltip = void 0, this;
285
+ var t;
286
+ return (t = this._tooltip) == null || t.remove(), this._tooltip = void 0, this;
274
287
  }
275
288
  /*
276
289
  * Returns an array of the points in the path, or nested arrays of points in case of multi-polyline.
277
290
  */
278
291
  getLatLngs() {
279
- return this._data.map((o) => c.latLng(this._accessor(o)));
292
+ return this._data.map((t) => u.latLng(this._accessor(t)));
280
293
  }
281
294
  /*
282
295
  * Get path geometry as GeoJSON
283
296
  */
284
297
  toGeoJSON() {
285
- return c.GeoJSON.getFeature(this, {
298
+ return u.GeoJSON.getFeature(this, {
286
299
  type: "MultiPoint",
287
- coordinates: c.GeoJSON.latLngsToCoords(this.getLatLngs(), 0)
300
+ coordinates: u.GeoJSON.latLngsToCoords(this.getLatLngs(), 0)
288
301
  });
289
302
  }
303
+ onDraw(t) {
304
+ this.dispatch().on("draw", t);
305
+ }
306
+ /**
307
+ * Bind callback to hexagon mouseover event
308
+ */
309
+ onMouseOver(t) {
310
+ this.dispatch().on("mouseover", t);
311
+ }
312
+ /**
313
+ * Bind callback to hexagon mouseout event
314
+ */
315
+ onMouseOut(t) {
316
+ this.dispatch().on("mouseout", t);
317
+ }
318
+ /**
319
+ * Bind callback to hexagon click event
320
+ */
321
+ onClick(t) {
322
+ this.dispatch().on("click", t);
323
+ }
290
324
  }
291
- function z(r) {
292
- return new H(r);
325
+ function z(a) {
326
+ return new k(a);
293
327
  }
294
328
  export {
295
- V as HexbinHoverHandler,
296
- H as HexbinLayer,
329
+ B as HexbinHoverHandler,
330
+ k as HexbinLayer,
297
331
  z as hexbinLayer
298
332
  };
299
333
  //# sourceMappingURL=index.es.js.map
@@ -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\n/**\n * Interface for handling hover events on hexbins.\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\n/**\n * Built-in hover handlers for hexbins.\n */\nexport namespace HexbinHoverHandler {\n /**\n * Resize the hexbin to fill the hexagon grid cell on hover.\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.radiusScale()(hexLayer.radiusValue()(d)));\n });\n }\n };\n\n }\n\n /**\n * Resize the hexbin by a scaling factor applied to the maximum hex radius.\n * Use a scaling factor of 1 to grow/shrink the hexbin to the edge of the cell.\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.radiusScale().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.radiusScale()(hexLayer.radiusValue()(d)));\n });\n }\n };\n }\n\n /**\n * Compound multiple hover handlers into a single handler.\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 /**\n * No hover handler.\n * @deprecated Will be removed in future versions\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/**\n * @notExported\n */\nL.SVG\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\n/**\n * Tooltip definition for the hexbin layer.\n * This can be used to generate a tooltip for each hexbin, if an external tooltip was not provided using bindTooltip()\n */\nexport type TooltipOptions<Data> = {\n options?: L.TooltipOptions,\n content?: L.Content | ((d: HexbinData<Data>[]) => L.Content)\n}\n\n/**\n * Hexbin layer configuration options this can be provided when instantiating a new hexbin layer.\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 * If true, the layer will not be redrawn after data changes and hover handler binding.\n * @default false\n */\n noRedraw?: boolean\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<L.Point>;\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\nconst debounce = <T extends unknown[]>(\n callback: (...args: T) => void,\n delay: number,\n) => {\n let timeoutTimer: ReturnType<typeof setTimeout>;\n\n return function (...args: T) {\n clearTimeout(timeoutTimer);\n\n timeoutTimer = setTimeout(() => {\n callback(...args);\n }, delay);\n };\n};\n\n\n/**\n * A layer for displaying binned data in a hexagon grid on a Leaflet map.\n * Extends L.SVG to take advantage of built-in zoom animations.\n */\nexport class HexbinLayer<Data = L.LatLngExpression> extends L.SVG {\n /**\n * Default options for the hexbin layer\n */\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 noRedraw: false,\n // Handle parent default options\n // ...L.SVG.prototype.options,\n ...L.Renderer.prototype.options,\n ...L.Layer.prototype.options\n }\n\n /**\n * Internal functions to access the data\n */\n protected _fn = {\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 /**\n * D3 scales used for the hexbin layer\n */\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 protected _dispatch = dispatch<SVGPathElement>('mouseover', 'mouseout', 'click');\n\n // Set up the default hover handler\n protected _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 protected _data = Array<Data>()\n\n\n declare protected _map: L.Map;\n\n protected _tooltipOptions: TooltipOptions<Data> = {};\n declare protected _tooltip: L.Tooltip | undefined;\n\n // declare _container: SVGElementTagNameMap['svg'];\n\n // declare _container: HTMLElement;\n declare protected _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 protected _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', debounce(() => this.redraw(), 100));\n // Initial draw\n this.redraw();\n return this\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 */\n protected _destroyContainer() {\n select(this._container).remove();\n }\n\n /**\n * (Re)draws the hexbins data on the container\n */\n public 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._map.latLngToLayerPoint(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 protected _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.radius(this.options.radius)(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 /**\n * Get or set the radius of the hexagon grid cells\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\n /**\n * Get or set the opacity of the hexbin layer\n * @param v The opacity value to set. If an array is provided, the first element is the minimum opacity and the second is the maximum.\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 /**\n * Get or set the duration of transition animations\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 /**\n * Get or set the color scale domain extent\n * @param v The color scale extent to set. If an array is provided, the first element is the minimum extent and the second is the maximum. This means that for the purpose of color interpolation, the domain will be clipped to this extent, i.e. values below the minimum will be treated as the minimum, and values above the maximum will be treated as the maximum.\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 /**\n * Get or set the radius scale domain extent\n * @param v The radius scale extent to set. If an array is provided, the first element is the minimum extent and the second is the maximum. This means that for the purpose of radius interpolation, the domain will be clipped to this extent, i.e. values below the minimum will be treated as the minimum, and values above the maximum will be treated as the maximum.\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 /**\n * Get or set the opacity scale domain extent\n * @param v The opacity scale extent to set. If an array is provided, the first element is the minimum extent and the second is the maximum. This means that for the purpose of opacity interpolation, the domain will be clipped to this extent, i.e. values below the minimum will be treated as the minimum, and values above the maximum will be treated as the maximum.\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 /**\n * Get or set the color scale range\n * @param v The color range to set. Colors will be interpolated between all provided colors.\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 /**\n * Get or set the radius scale range\n * @param v The min and max radius range to set. If null, the range will be set to the hexagon grid cell radius value.\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 /**\n * Get or set the color scale domain\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 /**\n * Get or set the radius scale domain\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 /**\n * Get or set the value mapper for the color scale\n * @param v The value mapper to set. This function should accept an array of hexbin data and return a number to be used for color interpolation.\n * @default the length of the data in the hexbin\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 /**\n * Get or set the value mapper for the radius scale\n * @param v The value mapper to set. This function should return a number for each bin, which will be used to determine the radius of the hexagon.\n * @default the length of the data in the hexbin\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 /**\n * Get or set the value mapper for the fill color of the hexbins\n * @param v The value mapper to set. This function should return a string to be used as the fill color for the hexbin.\n * @default a color interpolated from the color scale based on the value returned by the colorValue function\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 /**\n * Get or set the data to be binned by the hexbin layer.\n * Triggers a redraw of the hexbins when set.\n * @param v The data to set. This should be an array of data to be binned.\n * @param accessor An optional function to convert the data into a LatLngExpression. If not provided, the data is assumed to be an array of LatLngExpressions.\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 if (!this.options.noRedraw) this.redraw();\n return this;\n }\n\n accessor(): (d: Data) => L.LatLngExpression {\n return this._accessor;\n }\n\n /*\n * Getter for the D3 event dispatcher\n */\n dispatch() { return this._dispatch }\n\n /**\n * Get or set the hover handler for the hexbin layer.\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 if (!this.options.noRedraw) this.redraw();\n\n return this;\n }\n\n /**\n * Get or set the tooltip content and options for the hexbin layer.\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 /**\n * Get the tooltip instance attached to the hexbin layer\n */\n getTooltip(): L.Tooltip | undefined {\n return this._tooltip\n }\n\n /**\n * Bind a tooltip to the hexbin layer with the provided content and options.\n * Useful to bind an existing tooltip instance to the hexbin layer.\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 /**\n * Unbind the tooltip from the hexbin layer\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 // Map the data into an array of latLngs using the configured lat/lng accessors\n return this._data.map((d) => {\n return L.latLng(this._accessor(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","debounce","callback","delay","timeoutTimer","args","HexbinLayer","options","val","scaleLinear","dispatch","hexbin","x","y","select","map","_a","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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"}
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\n/**\n * Interface for handling hover events on hexbins.\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\n/**\n * Built-in hover handlers for hexbins.\n */\nexport namespace HexbinHoverHandler {\n /**\n * Resize the hexbin to fill the hexagon grid cell on hover.\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.radiusScale()(hexLayer.radiusValue()(d)));\n });\n }\n };\n\n }\n\n /**\n * Resize the hexbin by a scaling factor applied to the maximum hex radius.\n * Use a scaling factor of 1 to grow/shrink the hexbin to the edge of the cell.\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.radiusScale().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.radiusScale()(hexLayer.radiusValue()(d)));\n });\n }\n };\n }\n\n /**\n * Compound multiple hover handlers into a single handler.\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 /**\n * No hover handler.\n * @deprecated Will be removed in future versions\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/**\n * @notExported\n */\nL.SVG\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\n/**\n * Tooltip definition for the hexbin layer.\n * This can be used to generate a tooltip for each hexbin, if an external tooltip was not provided using bindTooltip()\n */\nexport type TooltipOptions<Data> = {\n options?: L.TooltipOptions,\n content?: L.Content | ((d: HexbinData<Data>[]) => L.Content)\n}\n\n\nexport type ScaleBinding<Data> = (d: HexbinData<Data>[]) => number\n\n/**\n * Hexbin layer configuration options this can be provided when instantiating a new hexbin layer.\n */\nexport interface HexbinLayerConfig<Data> {\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 * If true, the layer will not be redrawn after data changes and hover handler binding.\n * @default false\n */\n noRedraw?: boolean\n\n colorBinding?: ScaleBinding<Data>,\n radiusBinding?: ScaleBinding<Data>,\n opacityBinding?: ScaleBinding<Data>,\n fill?: (d: HexbinData<Data>[]) => 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<L.Point>;\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\nconst debounce = <T extends unknown[]>(\n callback: (...args: T) => void,\n delay: number,\n) => {\n let timeoutTimer: ReturnType<typeof setTimeout>;\n\n return function (...args: T) {\n clearTimeout(timeoutTimer);\n\n timeoutTimer = setTimeout(() => {\n callback(...args);\n }, delay);\n };\n};\n\n/**\n * A layer for displaying binned data in a hexagon grid on a Leaflet map.\n * Extends L.SVG to take advantage of built-in zoom animations.\n */\nexport class HexbinLayer<Data = L.LatLngExpression> extends L.SVG {\n /**\n * Default options for the hexbin layer\n */\n options: Required<HexbinLayerConfig<Data>> & 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 noRedraw: false,\n colorBinding: (d: HexbinData<Data>[]) => d.length,\n radiusBinding: (d: HexbinData<Data>[]) => d.length,\n opacityBinding: (d: HexbinData<Data>[]) => d.length,\n fill: (d: HexbinData<Data>[]) => {\n const val = this.options.colorBinding(d);\n return (null != val) ? this._scale.color(val) : 'none';\n },\n // Handle parent default options\n // ...L.SVG.prototype.options,\n ...L.Renderer.prototype.options,\n ...L.Layer.prototype.options\n }\n\n /**\n * D3 scales used for the hexbin layer\n */\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 protected _dispatch = dispatch('mouseover', 'mouseout', 'click', 'draw');\n\n // Set up the default hover handler\n protected _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 protected _data = Array<Data>()\n\n\n declare protected _map: L.Map;\n\n protected _tooltipOptions: TooltipOptions<Data> = {};\n declare protected _tooltip: L.Tooltip | undefined;\n\n // declare _container: SVGElementTagNameMap['svg'];\n\n // declare _container: HTMLElement;\n declare protected _d3Container: d3.Selection<SVGGElement, unknown, null, undefined>;\n\n public constructor(options?: HexbinLayerConfig<Data>) {\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 protected _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', debounce(() => this.redraw(), 100));\n // Initial draw\n this.redraw();\n return this\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 */\n protected _destroyContainer() {\n select(this._container).remove();\n }\n\n /**\n * (Re)draws the hexbins data on the container\n */\n public 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._map.latLngToLayerPoint(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 protected _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.radius(this.options.radius)(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.options.colorBinding, thisLayer.options.colorScaleExtent);\n const radiusExtent = thisLayer._getExtent(bins, thisLayer.options.radiusBinding, thisLayer.options.radiusScaleExtent);\n const opacityExtent = thisLayer._getExtent(bins, thisLayer.options.opacityBinding, 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.options.fill.bind(thisLayer))\n .attr('fill-opacity', (d) => thisLayer._scale.opacity(thisLayer.options.opacityBinding.call(thisLayer, d)))\n .attr('stroke-opacity', (d) => thisLayer._scale.opacity(thisLayer.options.opacityBinding.call(thisLayer, d)))\n .attr('d', (d) => {\n return thisLayer._hexLayout.hexagon(thisLayer._scale.radius(thisLayer.options.radiusBinding.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.options.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.options.opacityBinding.call(thisLayer, d)))\n .attr('stroke-opacity', (d) => thisLayer._scale.opacity(thisLayer.options.opacityBinding.call(thisLayer, d)))\n .attr('d', (d) => thisLayer._hexLayout.hexagon(thisLayer._scale.radius(thisLayer.options.radiusBinding.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 thisLayer._dispatch.call('draw', thisLayer, data, thisLayer, {\n colorExtent\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 /**\n * Get or set the radius of the hexagon grid cells\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\n /**\n * Get or set the opacity of the hexbin layer\n * @param v The opacity value to set. If an array is provided, the first element is the minimum opacity and the second is the maximum.\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 /**\n * Get or set the duration of transition animations\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 /**\n * Get or set the color scale domain extent\n * @param v The color scale extent to set. If an array is provided, the first element is the minimum extent and the second is the maximum. This means that for the purpose of color interpolation, the domain will be clipped to this extent, i.e. values below the minimum will be treated as the minimum, and values above the maximum will be treated as the maximum.\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 /**\n * Get or set the radius scale domain extent\n * @param v The radius scale extent to set. If an array is provided, the first element is the minimum extent and the second is the maximum. This means that for the purpose of radius interpolation, the domain will be clipped to this extent, i.e. values below the minimum will be treated as the minimum, and values above the maximum will be treated as the maximum.\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 /**\n * Get or set the opacity scale domain extent\n * @param v The opacity scale extent to set. If an array is provided, the first element is the minimum extent and the second is the maximum. This means that for the purpose of opacity interpolation, the domain will be clipped to this extent, i.e. values below the minimum will be treated as the minimum, and values above the maximum will be treated as the maximum.\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 /**\n * Get or set the color scale range\n * @param v The color range to set. Colors will be interpolated between all provided colors.\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 /**\n * Get or set the radius scale range\n * @param v The min and max radius range to set. If null, the range will be set to the hexagon grid cell radius value.\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 /**\n * Get or set the color scale domain\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 /**\n * Get or set the radius scale domain\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 /**\n * Get or set the value mapper for the color scale\n * @param v The value mapper to set. This function should accept an array of hexbin data and return a number to be used for color interpolation.\n * @default the length of the data in the hexbin\n */\n colorValue(): ScaleBinding<Data>;\n colorValue(v: ScaleBinding<Data>): this;\n colorValue(v?: ScaleBinding<Data>) {\n if (v === undefined) { return this.options.colorBinding; }\n this.options.colorBinding = v;\n\n return this;\n }\n\n /**\n * Get or set the value mapper for the radius scale\n * @param v The value mapper to set. This function should return a number for each bin, which will be used to determine the radius of the hexagon.\n * @default the length of the data in the hexbin\n */\n radiusValue(): ScaleBinding<Data>;\n radiusValue(v: ScaleBinding<Data>): this;\n radiusValue(v?: ScaleBinding<Data>) {\n if (v === undefined) { return this.options.radiusBinding; }\n this.options.radiusBinding = v;\n\n return this;\n }\n\n /**\n * Get or set the value mapper for the fill color of the hexbins\n * @param v The value mapper to set. This function should return a string to be used as the fill color for the hexbin.\n * @default a color interpolated from the color scale based on the value returned by the colorValue function\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.options.fill; }\n this.options.fill = v;\n\n return this;\n }\n\n /**\n * Get or set the data to be binned by the hexbin layer.\n * Triggers a redraw of the hexbins when set.\n * @param v The data to set. This should be an array of data to be binned.\n * @param accessor An optional function to convert the data into a LatLngExpression. If not provided, the data is assumed to be an array of LatLngExpressions.\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 if (!this.options.noRedraw) this.redraw();\n return this;\n }\n\n accessor(): (d: Data) => L.LatLngExpression {\n return this._accessor;\n }\n\n /*\n * Getter for the D3 event dispatcher\n */\n dispatch() { return this._dispatch }\n\n /**\n * Get or set the hover handler for the hexbin layer.\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 if (!this.options.noRedraw) this.redraw();\n\n return this;\n }\n\n /**\n * Get or set the color scale binding function for the hexbin layer.\n * This function is used to determine the color of each hexbin based on the data.\n */\n colorBinding(): ScaleBinding<Data>;\n colorBinding(v: ScaleBinding<Data>): this;\n colorBinding(v?: ScaleBinding<Data>): this | (ScaleBinding<Data>) {\n if (v === undefined) { return this.options.colorBinding; }\n this.options.colorBinding = v;\n if (!this.options.noRedraw) this.redraw();\n return this;\n }\n\n /**\n * Get or set the radius scale binding function for the hexbin layer.\n * This function is used to determine the radius of each hexbin based on the data.\n */\n radiusBinding(): ScaleBinding<Data>;\n radiusBinding(v: ScaleBinding<Data>): this;\n radiusBinding(v?: ScaleBinding<Data>): this | (ScaleBinding<Data>) {\n if (v === undefined) { return this.options.radiusBinding; }\n this.options.radiusBinding = v;\n if (!this.options.noRedraw) this.redraw();\n return this;\n }\n\n /**\n * Get or set the opacity scale binding function for the hexbin layer.\n * This function is used to determine the opacity of each hexbin based on the data.\n */\n opacityBinding(): ScaleBinding<Data>;\n opacityBinding(v: ScaleBinding<Data>): this;\n opacityBinding(v?: ScaleBinding<Data>): this | (ScaleBinding<Data>) {\n if (v === undefined) { return this.options.opacityBinding; }\n this.options.opacityBinding = v;\n if (!this.options.noRedraw) this.redraw();\n return this;\n }\n\n /**\n * Get or set the fill binding function for the hexbin layer.\n * This function is used to determine the fill color of each hexbin based on the data.\n * Can be used to override the default color scale function.\n */\n fillColor(): (d: HexbinData<Data>[]) => string;\n fillColor(v: (d: HexbinData<Data>[]) => string): this;\n fillColor(v?: (d: HexbinData<Data>[]) => string): this | ((d: HexbinData<Data>[]) => string) {\n if (v === undefined) { return this.options.fill; }\n this.options.fill = v;\n if (!this.options.noRedraw) this.redraw();\n return this;\n }\n\n /**\n * Get or set the tooltip content and options for the hexbin layer.\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 /**\n * Get the tooltip instance attached to the hexbin layer\n */\n getTooltip(): L.Tooltip | undefined {\n return this._tooltip\n }\n\n /**\n * Bind a tooltip to the hexbin layer with the provided content and options.\n * Useful to bind an existing tooltip instance to the hexbin layer.\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 /**\n * Unbind the tooltip from the hexbin layer\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 // Map the data into an array of latLngs using the configured lat/lng accessors\n return this._data.map((d) => {\n return L.latLng(this._accessor(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 onDraw(handler: (layer: HexbinLayer, data: HexbinData<Data>[], view: { colorExtent: [number, number] }) => void) {\n this.dispatch().on('draw', handler);\n }\n\n /**\n * Bind callback to hexagon mouseover event\n */\n onMouseOver(handler: (data: HexbinData<Data>[], layer: HexbinLayer, ev: MouseEvent) => void) {\n this.dispatch().on('mouseover', handler);\n }\n\n /**\n * Bind callback to hexagon mouseout event\n */\n onMouseOut(handler: (data: HexbinData<Data>[], layer: HexbinLayer, ev: MouseEvent) => void) {\n this.dispatch().on('mouseout', handler);\n }\n\n /**\n * Bind callback to hexagon click event\n */\n onClick(handler: (data: HexbinData<Data>[], latLng: L.LatLng, layer: HexbinLayer, ev: MouseEvent) => void) {\n this.dispatch().on('click', handler);\n }\n}\n\n/**\n * Factory function to instanciate a new hexbin layer\n */\nexport function hexbinLayer<Data = L.LatLngExpression>(options?: HexbinLayerConfig<Data>) {\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","debounce","callback","delay","timeoutTimer","args","HexbinLayer","options","val","scaleLinear","dispatch","hexbin","x","y","select","map","_a","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","handler","hexbinLayer"],"mappings":";;;;AAeiB,IAAAA;AAAA,CAAV,CAAUA,MAAV;AAIE,WAASC,IAAsC;AAC7C,WAAA;AAAA,MACL,WAAW,SAAUC,GAAqBC,GAA4BC,GAAmBC,GAAyB;AAEhH,QADUC,EAAG,OAA8CJ,EAAI,aAAa,EAC1E,OAAO,qBAAqB,EAC3B,WAAa,EAAA,SAASC,EAAS,QAAQ,QAAQ,EAC/C,KAAK,KAAK,SAAUI,GAAG;AACtB,iBAAOJ,EAAS,WAAW,QAAQA,EAAS,QAAQ,MAAM;AAAA,QAAA,CAC3D;AAAA,MACL;AAAA,MACA,UAAU,SAAUD,GAAqBC,GAA4BC,GAAmBC,GAAyB;AAE/G,QADUC,EAAG,OAA8CJ,EAAI,aAAa,EAC1E,OAAuB,qBAAqB,EAC3C,WAAa,EAAA,SAASC,EAAS,QAAQ,QAAQ,EAC/C,KAAK,KAAK,SAAUI,GAAG;AACf,iBAAAJ,EAAS,WAAW,QAAQA,EAAS,cAAcA,EAAS,YAAY,EAAEI,CAAC,CAAC,CAAC;AAAA,QAAA,CACrF;AAAA,MAAA;AAAA,IAEP;AAAA,EAAA;AAlBKP,EAAAA,EAAS,aAAAC;AA0BA,WAAAO,EAAYC,IAAsB,KAA8B;AAGvE,WAAA;AAAA,MACL,WAAW,SAAUP,GAAKC,GAAUC,GAAOC,GAAM;AAE/C,QADUC,EAAG,OAA8CJ,EAAI,aAAa,EAC1E,OAAO,qBAAqB,EAC3B,WAAA,EAAa,SAASC,EAAS,QAAQ,QAAQ,EAC/C,KAAK,KAAK,WAAY;AACd,iBAAAA,EAAS,WAAW,QAAQA,EAAS,cAAc,MAAM,EAAE,CAAC,IAAKM,CAAY;AAAA,QAAA,CACrF;AAAA,MACL;AAAA,MACA,UAAU,SAAUP,GAAKC,GAAUC,GAAOC,GAAM;AAE9C,QADUC,EAAG,OAA8CJ,EAAI,aAAc,EAC3E,OAAO,qBAAqB,EAC3B,WAAa,EAAA,SAASC,EAAS,QAAQ,QAAQ,EAC/C,KAAK,KAAK,CAACI,MACHJ,EAAS,WAAW,QAAQA,EAAS,cAAcA,EAAS,YAAY,EAAEI,CAAC,CAAC,CAAC,CACrF;AAAA,MAAA;AAAA,IAEP;AAAA,EAAA;AApBKP,EAAAA,EAAS,cAAAQ;AA0BT,WAASE,EAAeC,IAAuC,CAACC,EAAM,CAAA,GAA6B;AACjG,WAAA;AAAA,MACL,WAAW,SAAUV,GAAKC,GAAUC,GAAOC,GAAM;AACrC,QAAAM,EAAA,QAAQ,CAAC,MAAM;AAAE,YAAE,UAAUT,GAAKC,GAAUC,GAAOC,CAAI;AAAA,QAAA,CAAI;AAAA,MACvE;AAAA,MACA,UAAU,SAAUH,GAAKC,GAAUC,GAAOC,GAAM;AACpC,QAAAM,EAAA,QAAQ,CAAC,MAAM;AAAE,YAAE,SAAST,GAAKC,GAAUC,GAAOC,CAAI;AAAA,QAAA,CAAI;AAAA,MAAA;AAAA,IAExE;AAAA,EAAA;AARKL,EAAAA,EAAS,WAAAU;AAeT,WAASE,IAAgC;AACvC,WAAA;AAAA,MACL,WAAW,WAAY;AAAA,MAAE;AAAA,MACzB,UAAU,WAAY;AAAA,MAAA;AAAA,IACxB;AAAA,EAAA;AAJKZ,EAAAA,EAAS,OAAAY;AAAA,GAvEDZ,MAAAA,IAAA,CAAA,EAAA;AA+EjB,MAAAa,IAAeb;ACgCf,SAASc,EAAmBP,GAAiC;AAEzD,SAAAA,aAAaQ,EAAE,UACd,OAAOR,KAAM,YAAY,SAASA,KAAK,SAASA,KAChD,MAAM,QAAQA,CAAC,KAAKA,EAAE,WAAW,KAAK,OAAOA,EAAE,CAAC,KAAM,YAAY,OAAOA,EAAE,CAAC,KAAM;AAEvF;AAEA,MAAMS,IAAW,CACfC,GACAC,MACG;AACC,MAAAC;AAEJ,SAAO,YAAaC,GAAS;AAC3B,iBAAaD,CAAY,GAEzBA,IAAe,WAAW,MAAM;AAC9B,MAAAF,EAAS,GAAGG,CAAI;AAAA,OACfF,CAAK;AAAA,EACV;AACF;AAMa,MAAAG,UAA+CN,EAAE,IAAI;AAAA,EAmEzD,YAAYO,GAAmC;AAC9C,UAAA,GAhEyD,KAAA,UAAA;AAAA,MAC/D,QAAQ;AAAA,MACR,SAAS;AAAA,MACT,UAAU;AAAA,MAEV,kBAAkB,CAAC,GAAG,MAAS;AAAA,MAC/B,mBAAmB,CAAC,GAAG,MAAS;AAAA,MAChC,oBAAoB,CAAC,GAAG,MAAS;AAAA,MACjC,aAAa;AAAA,MACb,cAAc;AAAA,MACd,YAAY,CAAC,WAAW,SAAS;AAAA,MACjC,aAAa;AAAA,MAEb,eAAe;AAAA,MACf,UAAU;AAAA,MACV,cAAc,CAACf,MAA0BA,EAAE;AAAA,MAC3C,eAAe,CAACA,MAA0BA,EAAE;AAAA,MAC5C,gBAAgB,CAACA,MAA0BA,EAAE;AAAA,MAC7C,MAAM,CAACA,MAA0B;AAC/B,cAAMgB,IAAM,KAAK,QAAQ,aAAahB,CAAC;AACvC,eAAgBgB,KAAR,OAAe,KAAK,OAAO,MAAMA,CAAG,IAAI;AAAA,MAClD;AAAA;AAAA;AAAA,MAGA,GAAGR,EAAE,SAAS,UAAU;AAAA,MACxB,GAAGA,EAAE,MAAM,UAAU;AAAA,IACvB,GAKS,KAAA,SAAA;AAAA,MACP,OAAOS,EAA4B;AAAA,MACnC,QAAQA,EAAY;AAAA,MACpB,SAASA,EAAY;AAAA,IACvB,GAGA,KAAU,YAAYC,EAAS,aAAa,YAAY,SAAS,MAAM,GAG7D,KAAA,gBAA0CzB,EAAmB,KAAK,GAG/D,KAAA,aAAA0B,EAAA,EACV,OAAO,KAAK,QAAQ,MAAM,EAC1B,EAAE,CAAC,EAAE,OAAO,EAAE,GAAAC,EAAI,EAAA,MAAMA,CAAC,EACzB,EAAE,CAAC,EAAE,OAAO,EAAE,GAAAC,IAAI,MAAMA,CAAC,GAG5B,KAAU,QAAQ,MAAY,GAK9B,KAAU,kBAAwC,CAAC,GAWjD,KAAK,UAAU,EAAE,GAAG,KAAK,SAAS,GAAGN,EAAQ,GACxC,KAAA,OAAO,MACT,MAAM,KAAK,QAAQ,UAAU,EAC7B,MAAM,EAAI,GAEb,KAAK,OAAO,OACT,MAAM,KAAK,QAAQ,eAAe,CAAC,KAAK,QAAQ,QAAQ,KAAK,QAAQ,MAAM,CAAC,EAC5E,MAAM,EAAI,GAEb,KAAK,OAAO,QACT;AAAA,MACC,OAAO,KAAK,QAAQ,WAAY,WAC5B,CAAC,KAAK,QAAQ,SAAS,KAAK,QAAQ,OAAO,IAC3C,KAAK,QAAQ;AAAA,IAAA,EACjB,MAAM,EAAI;AAAA,EAAA;AAAA,EAIN,UAAUf,GAAS;AACpB,WAAAA;AAAA,EAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAOT,iBAAiB;AACf,UAAM,eAAe,GACrB,KAAK,eAAesB,EAAO,KAAK,UAAU,EAAE,OAAkC,GAAG;AAAA,EAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMnF,MAAMC,GAAkB;;AAEtB,iBAAM,MAAMA,CAAG,GAGf,KAAK,OAAOA,IACPC,IAAA,KAAA,aAAA,QAAAA,EAAU,UAAU,CAAC,GAAG,CAAC,GAAG,MAAMD,IAEnCA,EAAA,GAAG,WAAWd,EAAS,MAAM,KAAK,OAAO,GAAG,GAAG,CAAC,GAEpD,KAAK,OAAO,GACL;AAAA,EAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAOT,SAASc,GAAkB;AAEzB,gBAAK,kBAAkB,GAEvBA,EAAI,IAAI,WAAW,KAAK,QAAQ,IAAI,GAC7B;AAAA,EAAA;AAAA;AAAA;AAAA;AAAA,EAMC,oBAAoB;AACrB,IAAAD,EAAA,KAAK,UAAU,EAAE,OAAO;AAAA,EAAA;AAAA;AAAA;AAAA;AAAA,EAM1B,SAAS;AACd,UAAMG,IAAO;AAET,QAAA,CAACA,EAAK,KAAM;AAGhB,UAAM3B,IAAO2B,EAAK,MAAM,IAAsB,CAACzB,MAAY;AACnD,YAAA0B,IAAQD,EAAK,UAAUzB,CAAC,GACxB2B,IAAQF,EAAK,KAAK,mBAAmBC,CAAK;AAChD,aAAO,EAAE,OAAAA,GAAc,OAAAC,GAAO,MAAM3B,EAAE;AAAA,IAAA,CACvC,GAIK4B,IAAO,KAAK,aAAa,UAA+B,UAAU,EACrE,KAAa,CAAC,KAAK,KAAK,QAAQ,CAAC,GAAG,CAAC5B,MAAMA,CAAC,GAOzC6B,IAJQD,EAAK,QAAQ,OAAO,GAAG,EAClC,KAAK,SAAS,SAAU5B,GAAG;AAAE,aAAO,iBAAiBA;AAAA,IAAA,CAAI,EAGlC,MAAM4B,CAAI;AAG/B,IAAAA,EAAA,OAAO,OAAO,GAGd,KAAA,gBAAgBC,GAAa/B,CAAI;AAAA,EAAA;AAAA,EAI9B,eAAegC,GAAcC,GAAYC,GAA0B;AAC3E,UAAMC,KAAQF,IAAKD,KAAQ,KAAK,IAAIE,IAAS,GAAG,CAAC;AAC1C,WAAA,MAAM,KAAK,EAAE,QAAAA,EAAO,GAAG,CAACE,GAAGC,MAAML,IAAQK,IAAIF,CAAK;AAAA,EAAA;AAAA,EAG3D,gBAAgBG,GAA4DtC,GAA0B;AACpG,UAAMuC,IAAY,MAKZC,IAAOD,EAAU,KAAK,QAAQ,GAC9BE,IAASF,EAAU,KAAK,UAAU,EAAE,IAAIA,EAAU,QAAQ,SAAS,IAAI,KAAK,IAAIC,EAAK,GAAGA,EAAK,CAAC,CAAC,GAE/FE,IAAOH,EAAU,WAAW,OAAO,KAAK,QAAQ,MAAM,EAAEvC,CAAI,EAAE;AAAA,MAClE,CAAC,EAAE,GAAAsB,GAAG,GAAAC,QAAQkB,EAAO,SAASF,EAAU,KAAK,mBAAmB7B,EAAE,MAAMY,GAAGC,CAAC,CAAC,CAAC;AAAA,IAChF,GAGMoB,IAAcJ,EAAU,WAAWG,GAAMH,EAAU,QAAQ,cAAcA,EAAU,QAAQ,gBAAgB,GAC3GK,IAAeL,EAAU,WAAWG,GAAMH,EAAU,QAAQ,eAAeA,EAAU,QAAQ,iBAAiB,GAC9GM,IAAgBN,EAAU,WAAWG,GAAMH,EAAU,QAAQ,gBAAgBA,EAAU,QAAQ,kBAAkB,GAGjHO,IAAc,KAAK,QAAQ,eAC5BP,EAAU;AAAA,MACXI,EAAY,CAAC;AAAA,MACbA,EAAY,CAAC;AAAA,MACbJ,EAAU,OAAO,MAAM,QAAQ;AAAA,IACjC,GACIQ,IAAe,KAAK,QAAQ,gBAAgBH;AAGxC,IAAAL,EAAA,OAAO,MAAM,OAAOO,CAAW,GAC/BP,EAAA,OAAO,OAAO,OAAOQ,CAAY,GACjCR,EAAA,OAAO,QAAQ,OAAOM,CAAa;AAQ7C,UAAMf,IAAOQ,EAAE,UAAoD,oBAAoB,EACpF,KAAKI,GAAM,CAAC,EAAE,GAAApB,GAAG,GAAAC,EAAQ,MAAA,GAAGD,CAAC,IAAIC,CAAC,EAAE;AASlC,IAAAO,EAAA,OAAuB,qBAAqB,EAC9C,WAAW,EAAE,SAASS,EAAU,QAAQ,QAAQ,EAChD,KAAK,QAAQA,EAAU,QAAQ,KAAK,KAAKA,CAAS,CAAC,EACnD,KAAK,gBAAgB,CAACrC,MAAMqC,EAAU,OAAO,QAAQA,EAAU,QAAQ,eAAe,KAAKA,GAAWrC,CAAC,CAAC,CAAC,EACzG,KAAK,kBAAkB,CAACA,MAAMqC,EAAU,OAAO,QAAQA,EAAU,QAAQ,eAAe,KAAKA,GAAWrC,CAAC,CAAC,CAAC,EAC3G,KAAK,KAAK,CAACA,MACHqC,EAAU,WAAW,QAAQA,EAAU,OAAO,OAAOA,EAAU,QAAQ,cAAc,KAAKA,GAAWrC,CAAC,CAAC,CAAC,CAChH;AAQH,UAAM8C,IAAYlB,EAAK,MAAM,EAAE,OAAO,GAAG,EAAE,KAAK,SAAS,kBAAkB,EACxE,MAAM,kBAAkBS,EAAU,QAAQ,aAAa;AAG1D,IAAAS,EAAU,GAAG,aAAa,SAA6B9C,GAAemC,GAAG;AAEtB,MAAAb,EAAA,IAAI,EAAE,MAAM;AAAA,IAAA,CAC9D;AAEK,UAAAyB,IAAWD,EAAU,OAAO,MAAM,EAAE,KAAK,SAAS,gBAAgB,EACrE,KAAK,aAAa,CAAC,EAAE,GAAA1B,GAAG,GAAAC,EAAE,MAAM,aAAaD,CAAC,IAAIC,CAAC,GAAG,EACtD,KAAK,KAAK,MAAMgB,EAAU,WAAW,QAAQA,EAAU,OAAO,OAAO,MAAM,EAAE,CAAC,CAAC,CAAC,EAEhF,KAAK,QAAQA,EAAU,QAAQ,KAAK,KAAKA,CAAS,CAAC,EACnD,KAAK,gBAAgB,IAAI,EACzB,KAAK,kBAAkB,IAAI,EAC3B,MAAM,kBAAkB,KAAK;AAEhC,IAAAU,EAAS,WAAW,EAAE,SAASV,EAAU,QAAQ,QAAQ,EACtD,KAAK,gBAAgB,CAACrC,MAAMqC,EAAU,OAAO,QAAQA,EAAU,QAAQ,eAAe,KAAKA,GAAWrC,CAAC,CAAC,CAAC,EACzG,KAAK,kBAAkB,CAACA,MAAMqC,EAAU,OAAO,QAAQA,EAAU,QAAQ,eAAe,KAAKA,GAAWrC,CAAC,CAAC,CAAC,EAC3G,KAAK,KAAK,CAACA,MAAMqC,EAAU,WAAW,QAAQA,EAAU,OAAO,OAAOA,EAAU,QAAQ,cAAc,KAAKA,GAAWrC,CAAC,CAAC,CAAC,CAAC,EAC1H,MAAM,kBAAkB,KAAK,GAGd8C,EAAU,OAAO,MAAM,EAAE,KAAK,SAAS,aAAa,EACnE,KAAK,aAAa,CAAC,EAAE,GAAA1B,GAAG,GAAAC,EAAE,MAAM,aAAaD,CAAC,IAAIC,CAAC,GAAG,EACtD,KAAK,KAAK,MAAMgB,EAAU,WAAW,QAAQA,EAAU,QAAQ,MAAM,CAAC,EACtE,KAAK,QAAQ,MAAM,EACnB,KAAK,UAAU,MAAM,GAIxBU,EAAS,GAAG,aAAa,SAAgCC,GAAgBlD,GAAM;;AACzE,OAAA0B,IAAAa,EAAU,oBAAV,QAAAb,EAA2B,aAC7ByB,IAAAZ,EAAU,aAAV,QAAAY,EACI;AAAA,QACA,OAAOZ,EAAU,gBAAgB,WAAY,aACzCA,EAAU,gBAAgB,QAAQvC,CAAI,IACtCuC,EAAU,gBAAgB;AAAA,QAE/B;AAAA,QACCA,EAAU,KAAK,mBAAmB7B,EAAE,MAAMV,EAAK,GAAGA,EAAK,CAAC,CAAC;AAAA,QAE1D,OAAOuC,EAAU,QAEtBA,EAAU,cAAc,UAAU,MAAMA,GAAWW,GAAIlD,CAAI,GAC3DuC,EAAU,UAAU,KAAK,aAAa,MAAMvC,GAAMuC,GAAWW,CAAE,GAC1D,KAAA,UAAU,IAAI,OAAO;AAAA,IAC3B,CAAA,EACE,GAAG,YAAY,SAAgCA,GAAgBlD,GAAM;;AACpE,OAAA0B,IAAAa,EAAU,aAAV,QAAAb,EAAoB,SACpBa,EAAU,cAAc,SAAS,MAAMA,GAAWW,GAAIlD,CAAI,GAC1DuC,EAAU,UAAU,KAAK,YAAY,MAAMvC,GAAMuC,GAAWW,CAAE,GACzD,KAAA,UAAU,OAAO,OAAO;AAAA,IAC9B,CAAA,EACA,GAAG,SAAS,SAAgBA,GAAgBlD,GAAM;AAC3C,YAAAoD,IAASb,EAAU,KAAK,mBAAmB7B,EAAE,MAAMV,EAAK,GAAGA,EAAK,CAAC,CAAC;AACxE,MAAAuC,EAAU,UAAU,KAAK,SAAS,MAAMvC,GAAMoD,GAAQb,GAAWW,CAAE,GACnEA,EAAG,gBAAgB;AAAA,IAAA,CACpB;AAIG,UAAAG,IAAOvB,EAAK,KAAK;AAElB,IAAAuB,EAAA,OAAO,qBAAqB,EAC9B,WAAW,EAAE,SAASd,EAAU,QAAQ,QAAQ,EAChD,KAAK,gBAAgB,CAAC,EACtB,KAAK,kBAAkB,CAAC,EACxB,KAAK,KAAK,CAACrC,MAAMqC,EAAU,WAAW,QAAQ,CAAC,CAAC,GAEnDc,EAAK,aAAa,SAASd,EAAU,QAAQ,QAAQ,EAAE,OAAO,GAG9DA,EAAU,UAAU,KAAK,QAAQA,GAAWvC,GAAMuC,GAAW;AAAA,MAC3D,aAAAI;AAAA,IAAA,CACD;AAAA,EAAA;AAAA,EAGH,WACED,GACAY,GACAC,GACkB;AAGlB,QAAIC,IAAMC,EAA4Cf,GAAMY,EAAQ,KAAK,IAAI,CAAC;AAE9E,YAAIE,EAAI,CAAC,MAAM,UAAaA,EAAI,CAAC,MAAM,YAC/BA,IAAA,CAAC,GAAG,CAAC,IAIID,EAAY,CAAC,KAA1B,WAAiC,CAAC,IAAIA,EAAY,CAAC,IACtCA,EAAY,CAAC,KAA1B,WAAiC,CAAC,IAAIA,EAAY,CAAC,IAEhDC;AAAA,EAAA;AAAA,EAYT,OAAOE,GAA2B;AAChC,WAAIA,MAAM,SAAkB,KAAK,QAAQ,UAEzC,KAAK,QAAQ,SAASA,GACjB,KAAA,WAAW,OAAOA,CAAC,GAEZ,KAAK,QAAQ,eAArB,QACF,KAAK,OAAO,OAAO,MAAM,CAAC,KAAK,QAAQ,QAAQ,KAAK,QAAQ,MAAM,CAAC,EAAE,MAAM,EAAI,GAG1E;AAAA,EAAA;AAAA,EAUT,QAAQA,GAAiE;AACvE,WAAIA,MAAM,SAAkB,KAAK,QAAQ,WACzC,KAAK,QAAQ,UAAUA,GACvB,KAAK,OAAO,QAAQ,MAAM,OAAOA,KAAM,WAAW,CAACA,GAAGA,CAAC,IAAIA,CAAC,EAAE,MAAM,EAAI,GAEjE;AAAA,EAAA;AAAA,EAQT,SAASA,GAA2B;AAClC,WAAIA,MAAM,SAAkB,KAAK,QAAQ,YACzC,KAAK,QAAQ,WAAWA,GAEjB;AAAA,EAAA;AAAA,EAST,iBAAiBA,GAAuE;AACtF,WAAIA,MAAM,SAAoB,KAAK,QAAQ,oBAC3C,KAAK,QAAQ,mBAAmBA,GAEzB;AAAA,EAAA;AAAA,EAST,kBAAkBA,GAAuE;AACvF,WAAIA,MAAM,SAAoB,KAAK,QAAQ,qBAC3C,KAAK,QAAQ,oBAAoBA,GAE1B;AAAA,EAAA;AAAA,EAST,mBAAmBA,GAAuE;AACxF,WAAIA,MAAM,SAAoB,KAAK,QAAQ,sBAC3C,KAAK,QAAQ,qBAAqBA,GAE3B;AAAA,EAAA;AAAA,EAUT,WAAWA,GAA+B;AACxC,WAAIA,MAAM,SAAoB,KAAK,QAAQ,cAC3C,KAAK,QAAQ,aAAaA,GACrB,KAAA,OAAO,MAAM,MAAMA,CAAC,GAElB;AAAA,EAAA;AAAA,EAST,YAAYA,GAA6D;AACvE,WAAIA,MAAM,SAAoB,KAAK,QAAQ,eAC3C,KAAK,QAAQ,cAAcA,GAC3B,KAAK,OAAO,OAAO,MAAM,KAAK,QAAQ,eAAe,CAAC,KAAK,QAAQ,QAAQ,KAAK,QAAQ,MAAM,CAAC,EAAE,MAAM,EAAI,GAEpG;AAAA,EAAA;AAAA,EAQT,WAAWA,GAAoC;AAC7C,WAAIA,MAAM,SAAkB,KAAK,OAAO,SACxC,KAAK,OAAO,QAAQA,GACb;AAAA,EAAA;AAAA,EAQT,YAAYA,GAA2E;AACrF,WAAIA,MAAM,SAAkB,KAAK,OAAO,UACxC,KAAK,OAAO,SAASA,GACd;AAAA,EAAA;AAAA,EAUT,WAAWA,GAAwB;AACjC,WAAIA,MAAM,SAAoB,KAAK,QAAQ,gBAC3C,KAAK,QAAQ,eAAeA,GAErB;AAAA,EAAA;AAAA,EAUT,YAAYA,GAAwB;AAClC,WAAIA,MAAM,SAAoB,KAAK,QAAQ,iBAC3C,KAAK,QAAQ,gBAAgBA,GAEtB;AAAA,EAAA;AAAA,EAUT,KAAKA,GAAuC;AAC1C,WAAIA,MAAM,SAAoB,KAAK,QAAQ,QAC3C,KAAK,QAAQ,OAAOA,GAEb;AAAA,EAAA;AAAA;AAAA,EAcT,KAAKA,GAAmCC,GAA2D;AACjG,WAAID,MAAM,SACD,KAAK,SAGV,CAACjD,EAAmBiD,EAAE,CAAC,CAAC,KAAK,CAACC,KAChC,QAAQ,MAAM,4JAA4J,GAGvK,KAAA,QAAQD,KAAe,CAAC,GACxB,KAAA,YAAYC,MAAa,CAACzD,MAAYA,IAEtC,KAAK,QAAQ,iBAAe,OAAO,GACjC;AAAA,EAAA;AAAA,EAGT,WAA4C;AAC1C,WAAO,KAAK;AAAA,EAAA;AAAA;AAAA;AAAA;AAAA,EAMd,WAAW;AAAE,WAAO,KAAK;AAAA,EAAA;AAAA,EAOzB,aAAawD,GAA+D;AAC1E,WAAIA,MAAM,SAAoB,KAAK,iBACnC,KAAK,gBAAyBA,KAAS/D,EAAmB,KAAK,GAE1D,KAAK,QAAQ,iBAAe,OAAO,GAEjC;AAAA,EAAA;AAAA,EAST,aAAa+D,GAAqD;AAChE,WAAIA,MAAM,SAAoB,KAAK,QAAQ,gBAC3C,KAAK,QAAQ,eAAeA,GACvB,KAAK,QAAQ,iBAAe,OAAO,GACjC;AAAA,EAAA;AAAA,EAST,cAAcA,GAAqD;AACjE,WAAIA,MAAM,SAAoB,KAAK,QAAQ,iBAC3C,KAAK,QAAQ,gBAAgBA,GACxB,KAAK,QAAQ,iBAAe,OAAO,GACjC;AAAA,EAAA;AAAA,EAST,eAAeA,GAAqD;AAClE,WAAIA,MAAM,SAAoB,KAAK,QAAQ,kBAC3C,KAAK,QAAQ,iBAAiBA,GACzB,KAAK,QAAQ,iBAAe,OAAO,GACjC;AAAA,EAAA;AAAA,EAUT,UAAUA,GAAmF;AAC3F,WAAIA,MAAM,SAAoB,KAAK,QAAQ,QAC3C,KAAK,QAAQ,OAAOA,GACf,KAAK,QAAQ,iBAAe,OAAO,GACjC;AAAA,EAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAOT,QAAQE,GAAqC;AAC3C,gBAAK,kBAAkBA,GACnB,KAAK,WACP,KAAK,SAAS,UAAUA,EAAQ,WAAW,CAAC,IAE5C,KAAK,WAAWlD,EAAE,QAAQkD,EAAQ,OAAO,GAEpC;AAAA,EAAA;AAAA;AAAA;AAAA;AAAA,EAMT,aAAoC;AAClC,WAAO,KAAK;AAAA,EAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAOd,YAAYC,GAAgC5C,GAAkC;AACxE,WAAA4C,aAAmBnD,EAAE,WACvB,KAAK,WAAWmD,GAGZ,KAAK,QACF,KAAA,SAAS,UAAU,CAAC,GAAG,CAAC,CAAC,EAAE,MAAM,KAAK,IAAI,KAGjD,KAAK,WAAWnD,EAAE,QAAQO,CAAO,EAAE,WAAW4C,CAAO,GAEhD;AAAA,EAAA;AAAA;AAAA;AAAA;AAAA,EAMT,gBAAsB;;AACpB,YAAAnC,IAAA,KAAK,aAAL,QAAAA,EAAe,UACf,KAAK,WAAW,QACT;AAAA,EAAA;AAAA;AAAA;AAAA;AAAA,EAMT,aAAa;AAEX,WAAO,KAAK,MAAM,IAAI,CAACxB,MACdQ,EAAE,OAAO,KAAK,UAAUR,CAAC,CAAC,CAClC;AAAA,EAAA;AAAA;AAAA;AAAA;AAAA,EAKH,YAA2D;AAClD,WAAAQ,EAAE,QAAQ,WAAyC,MAAM;AAAA,MAC9D,MAAM;AAAA,MACN,aAAaA,EAAE,QAAQ,gBAAgB,KAAK,WAAA,GAAc,CAAC;AAAA,IAAA,CAC5D;AAAA,EAAA;AAAA,EAGH,OAAOoD,GAA0G;AAC/G,SAAK,SAAS,EAAE,GAAG,QAAQA,CAAO;AAAA,EAAA;AAAA;AAAA;AAAA;AAAA,EAMpC,YAAYA,GAAiF;AAC3F,SAAK,SAAS,EAAE,GAAG,aAAaA,CAAO;AAAA,EAAA;AAAA;AAAA;AAAA;AAAA,EAMzC,WAAWA,GAAiF;AAC1F,SAAK,SAAS,EAAE,GAAG,YAAYA,CAAO;AAAA,EAAA;AAAA;AAAA;AAAA;AAAA,EAMxC,QAAQA,GAAmG;AACzG,SAAK,SAAS,EAAE,GAAG,SAASA,CAAO;AAAA,EAAA;AAEvC;AAKO,SAASC,EAAuC9C,GAAmC;AACjF,SAAA,IAAID,EAAkBC,CAAO;AACtC;"}
package/dist/index.umd.js CHANGED
@@ -1,2 +1,2 @@
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,O,w){"use strict";function S(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=S(u),c=S(w);var y;(s=>{function t(){return{mouseover:function(p,e,r,d){m.select(p.parentElement).select("path.hexbin-hexagon").transition().duration(e.options.duration).attr("d",function(f){return e._hexLayout.hexagon(e.options.radius)})},mouseout:function(p,e,r,d){m.select(p.parentElement).select("path.hexbin-hexagon").transition().duration(e.options.duration).attr("d",function(f){return e._hexLayout.hexagon(e.radiusScale()(e.radiusValue()(f)))})}}}s.resizeFill=t;function i(p=1.5){return{mouseover:function(e,r,d,_){m.select(e.parentElement).select("path.hexbin-hexagon").transition().duration(r.options.duration).attr("d",function(){return r._hexLayout.hexagon(r.radiusScale().range()[1]*p)})},mouseout:function(e,r,d,_){m.select(e.parentElement).select("path.hexbin-hexagon").transition().duration(r.options.duration).attr("d",L=>r._hexLayout.hexagon(r.radiusScale()(r.radiusValue()(L))))}}}s.resizeScale=i;function o(p=[l()]){return{mouseover:function(e,r,d,_){p.forEach(f=>{f.mouseover(e,r,d,_)})},mouseout:function(e,r,d,_){p.forEach(f=>{f.mouseout(e,r,d,_)})}}}s.compound=o;function l(){return{mouseover:function(){},mouseout:function(){}}}s.none=l})(y||(y={}));const x=y;function H(s){return s instanceof c.LatLng||typeof s=="object"&&"lat"in s&&"lng"in s||Array.isArray(s)&&s.length===2&&typeof s[0]=="number"&&typeof s[1]=="number"}const j=(s,t)=>{let i;return function(...o){clearTimeout(i),i=setTimeout(()=>{s(...o)},t)}};class E extends c.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",noRedraw:!1,...c.Renderer.prototype.options,...c.Layer.prototype.options},this._fn={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=O.hexbin().radius(this.options.radius).x(({point:{x:i}})=>i).y(({point:{y:i}})=>i),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",j(()=>this.redraw(),100)),this.redraw(),this}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(e=>{const r=t._accessor(e),d=t._map.latLngToLayerPoint(r);return{coord:r,point:d,data:e}}),o=this._d3Container.selectAll("g.hexbin").data([this._map.getZoom()],e=>e),p=o.enter().append("g").attr("class",function(e){return"hexbin zoom-"+e}).merge(o);o.exit().remove(),this._createHexagons(p,i)}_linearlySpace(t,i,o){const l=(i-t)/Math.max(o-1,1);return Array.from({length:o},(p,e)=>t+e*l)}_createHexagons(t,i){const o=this,l=o._map.getSize(),p=o._map.getBounds().pad(o.options.radius*2/Math.max(l.x,l.y)),e=o._hexLayout.radius(this.options.radius)(i).filter(({x:n,y:a})=>p.contains(o._map.layerPointToLatLng(c.point(n,a)))),r=o._getExtent(e,o._fn.colorValue,o.options.colorScaleExtent),d=o._getExtent(e,o._fn.radiusValue,o.options.radiusScaleExtent),_=o._getExtent(e,o._fn.opacityValue,o.options.opacityScaleExtent),f=this.options.colorDomain??o._linearlySpace(r[0],r[1],o._scale.color.range().length),L=this.options.radiusDomain||d;o._scale.color.domain(f),o._scale.radius.domain(L),o._scale.opacity.domain(_);const b=t.selectAll("g.hexbin-container").data(e,({x:n,y:a})=>`${n}:${a}`);b.select("path.hexbin-hexagon").transition().duration(o.options.duration).attr("fill",o._fn.fill.bind(o)).attr("fill-opacity",n=>o._scale.opacity(o._fn.opacityValue.call(o,n))).attr("stroke-opacity",n=>o._scale.opacity(o._fn.opacityValue.call(o,n))).attr("d",n=>o._hexLayout.hexagon(o._scale.radius(o._fn.radiusValue.call(o,n))));const v=b.enter().append("g").attr("class","hexbin-container").style("pointer-events",o.options.pointerEvents);v.on("mouseover",function(n,a){u.select(this).raise()});const V=v.append("path").attr("class","hexbin-hexagon").attr("transform",({x:n,y:a})=>`translate(${n},${a})`).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",n=>o._scale.opacity(o._fn.opacityValue.call(o,n))).attr("stroke-opacity",n=>o._scale.opacity(o._fn.opacityValue.call(o,n))).attr("d",n=>o._hexLayout.hexagon(o._scale.radius(o._fn.radiusValue.call(o,n)))).style("pointer-events","all"),v.append("path").attr("class","hexbin-grid").attr("transform",({x:n,y:a})=>`translate(${n},${a})`).attr("d",()=>o._hexLayout.hexagon(o.options.radius)).attr("fill","none").attr("stroke","none"),V.on("mouseover",function(n,a){var g,R;(g=o._tooltipOptions)!=null&&g.content&&((R=o._tooltip)==null||R.setContent(typeof o._tooltipOptions.content=="function"?o._tooltipOptions.content(a):o._tooltipOptions.content).setLatLng(o._map.layerPointToLatLng(c.point(a.x,a.y))).openOn(o._map)),o._hoverHandler.mouseover(this,o,n,a),o._dispatch.call("mouseover",this,a,o,n),this.classList.add("hover")}).on("mouseout",function(n,a){var g;(g=o._tooltip)==null||g.close(),o._hoverHandler.mouseout(this,o,n,a),o._dispatch.call("mouseout",this,a,o,n),this.classList.remove("hover")}).on("click",function(n,a){const g=o._map.layerPointToLatLng(c.point(a.x,a.y));o._dispatch.call("click",this,a,g,o,n),n.stopPropagation()});const T=b.exit();T.select("path.hexbin-hexagon").transition().duration(o.options.duration).attr("fill-opacity",0).attr("stroke-opacity",0).attr("d",n=>o._hexLayout.hexagon(0)),T.transition().duration(o.options.duration).remove()}_getExtent(t,i,o){let l=u.extent(t,i.bind(this));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}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)}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.options.noRedraw||this.redraw(),this)}accessor(){return this._accessor}dispatch(){return this._dispatch}hoverHandler(t){return t===void 0?this._hoverHandler:(this._hoverHandler=t??x.none(),this.options.noRedraw||this.redraw(),this)}tooltip(t){return this._tooltipOptions=t,this._tooltip?this._tooltip.options=t.options??{}:this._tooltip=c.tooltip(t.options),this}getTooltip(){return this._tooltip}bindTooltip(t,i){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}unbindTooltip(){var t;return(t=this._tooltip)==null||t.remove(),this._tooltip=void 0,this}getLatLngs(){return this._data.map(t=>c.latLng(this._accessor(t)))}toGeoJSON(){return c.GeoJSON.getFeature(this,{type:"MultiPoint",coordinates:c.GeoJSON.latLngsToCoords(this.getLatLngs(),0)})}}function k(s){return new E(s)}h.HexbinHoverHandler=x,h.HexbinLayer=E,h.hexbinLayer=k,Object.defineProperty(h,Symbol.toStringTag,{value:"Module"})});
1
+ (function(d,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):(d=typeof globalThis<"u"?globalThis:d||self,u(d["leaflet-hexbin"]={},d.d3,d["d3-hexbin"],d.L))})(this,function(d,u,O,T){"use strict";function S(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=S(u),l=S(T);var y;(s=>{function t(){return{mouseover:function(p,n,r,h){m.select(p.parentElement).select("path.hexbin-hexagon").transition().duration(n.options.duration).attr("d",function(f){return n._hexLayout.hexagon(n.options.radius)})},mouseout:function(p,n,r,h){m.select(p.parentElement).select("path.hexbin-hexagon").transition().duration(n.options.duration).attr("d",function(f){return n._hexLayout.hexagon(n.radiusScale()(n.radiusValue()(f)))})}}}s.resizeFill=t;function i(p=1.5){return{mouseover:function(n,r,h,g){m.select(n.parentElement).select("path.hexbin-hexagon").transition().duration(r.options.duration).attr("d",function(){return r._hexLayout.hexagon(r.radiusScale().range()[1]*p)})},mouseout:function(n,r,h,g){m.select(n.parentElement).select("path.hexbin-hexagon").transition().duration(r.options.duration).attr("d",L=>r._hexLayout.hexagon(r.radiusScale()(r.radiusValue()(L))))}}}s.resizeScale=i;function o(p=[c()]){return{mouseover:function(n,r,h,g){p.forEach(f=>{f.mouseover(n,r,h,g)})},mouseout:function(n,r,h,g){p.forEach(f=>{f.mouseout(n,r,h,g)})}}}s.compound=o;function c(){return{mouseover:function(){},mouseout:function(){}}}s.none=c})(y||(y={}));const x=y;function k(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"}const C=(s,t)=>{let i;return function(...o){clearTimeout(i),i=setTimeout(()=>{s(...o)},t)}};class E 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",noRedraw:!1,colorBinding:i=>i.length,radiusBinding:i=>i.length,opacityBinding:i=>i.length,fill:i=>{const o=this.options.colorBinding(i);return o!=null?this._scale.color(o):"none"},...l.Renderer.prototype.options,...l.Layer.prototype.options},this._scale={color:u.scaleLinear(),radius:u.scaleLinear(),opacity:u.scaleLinear()},this._dispatch=u.dispatch("mouseover","mouseout","click","draw"),this._hoverHandler=x.none(),this._hexLayout=O.hexbin().radius(this.options.radius).x(({point:{x:i}})=>i).y(({point:{y:i}})=>i),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",C(()=>this.redraw(),100)),this.redraw(),this}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 r=t._accessor(n),h=t._map.latLngToLayerPoint(r);return{coord:r,point:h,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.radius(this.options.radius)(i).filter(({x:e,y:a})=>p.contains(o._map.layerPointToLatLng(l.point(e,a)))),r=o._getExtent(n,o.options.colorBinding,o.options.colorScaleExtent),h=o._getExtent(n,o.options.radiusBinding,o.options.radiusScaleExtent),g=o._getExtent(n,o.options.opacityBinding,o.options.opacityScaleExtent),f=this.options.colorDomain??o._linearlySpace(r[0],r[1],o._scale.color.range().length),L=this.options.radiusDomain||h;o._scale.color.domain(f),o._scale.radius.domain(L),o._scale.opacity.domain(g);const b=t.selectAll("g.hexbin-container").data(n,({x:e,y:a})=>`${e}:${a}`);b.select("path.hexbin-hexagon").transition().duration(o.options.duration).attr("fill",o.options.fill.bind(o)).attr("fill-opacity",e=>o._scale.opacity(o.options.opacityBinding.call(o,e))).attr("stroke-opacity",e=>o._scale.opacity(o.options.opacityBinding.call(o,e))).attr("d",e=>o._hexLayout.hexagon(o._scale.radius(o.options.radiusBinding.call(o,e))));const v=b.enter().append("g").attr("class","hexbin-container").style("pointer-events",o.options.pointerEvents);v.on("mouseover",function(e,a){u.select(this).raise()});const B=v.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.options.fill.bind(o)).attr("fill-opacity",.01).attr("stroke-opacity",.01).style("pointer-events","all");B.transition().duration(o.options.duration).attr("fill-opacity",e=>o._scale.opacity(o.options.opacityBinding.call(o,e))).attr("stroke-opacity",e=>o._scale.opacity(o.options.opacityBinding.call(o,e))).attr("d",e=>o._hexLayout.hexagon(o._scale.radius(o.options.radiusBinding.call(o,e)))).style("pointer-events","all"),v.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){var _,R;(_=o._tooltipOptions)!=null&&_.content&&((R=o._tooltip)==null||R.setContent(typeof o._tooltipOptions.content=="function"?o._tooltipOptions.content(a):o._tooltipOptions.content).setLatLng(o._map.layerPointToLatLng(l.point(a.x,a.y))).openOn(o._map)),o._hoverHandler.mouseover(this,o,e,a),o._dispatch.call("mouseover",this,a,o,e),this.classList.add("hover")}).on("mouseout",function(e,a){var _;(_=o._tooltip)==null||_.close(),o._hoverHandler.mouseout(this,o,e,a),o._dispatch.call("mouseout",this,a,o,e),this.classList.remove("hover")}).on("click",function(e,a){const _=o._map.layerPointToLatLng(l.point(a.x,a.y));o._dispatch.call("click",this,a,_,o,e),e.stopPropagation()});const w=b.exit();w.select("path.hexbin-hexagon").transition().duration(o.options.duration).attr("fill-opacity",0).attr("stroke-opacity",0).attr("d",e=>o._hexLayout.hexagon(0)),w.transition().duration(o.options.duration).remove(),o._dispatch.call("draw",o,i,o,{colorExtent:r})}_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)}colorValue(t){return t===void 0?this.options.colorBinding:(this.options.colorBinding=t,this)}radiusValue(t){return t===void 0?this.options.radiusBinding:(this.options.radiusBinding=t,this)}fill(t){return t===void 0?this.options.fill:(this.options.fill=t,this)}data(t,i){return t===void 0?this._data:(!k(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.options.noRedraw||this.redraw(),this)}accessor(){return this._accessor}dispatch(){return this._dispatch}hoverHandler(t){return t===void 0?this._hoverHandler:(this._hoverHandler=t??x.none(),this.options.noRedraw||this.redraw(),this)}colorBinding(t){return t===void 0?this.options.colorBinding:(this.options.colorBinding=t,this.options.noRedraw||this.redraw(),this)}radiusBinding(t){return t===void 0?this.options.radiusBinding:(this.options.radiusBinding=t,this.options.noRedraw||this.redraw(),this)}opacityBinding(t){return t===void 0?this.options.opacityBinding:(this.options.opacityBinding=t,this.options.noRedraw||this.redraw(),this)}fillColor(t){return t===void 0?this.options.fill:(this.options.fill=t,this.options.noRedraw||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(){return this._data.map(t=>l.latLng(this._accessor(t)))}toGeoJSON(){return l.GeoJSON.getFeature(this,{type:"MultiPoint",coordinates:l.GeoJSON.latLngsToCoords(this.getLatLngs(),0)})}onDraw(t){this.dispatch().on("draw",t)}onMouseOver(t){this.dispatch().on("mouseover",t)}onMouseOut(t){this.dispatch().on("mouseout",t)}onClick(t){this.dispatch().on("click",t)}}function H(s){return new E(s)}d.HexbinHoverHandler=x,d.HexbinLayer=E,d.hexbinLayer=H,Object.defineProperty(d,Symbol.toStringTag,{value:"Module"})});
2
2
  //# sourceMappingURL=index.umd.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.umd.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\n/**\n * Interface for handling hover events on hexbins.\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\n/**\n * Built-in hover handlers for hexbins.\n */\nexport namespace HexbinHoverHandler {\n /**\n * Resize the hexbin to fill the hexagon grid cell on hover.\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.radiusScale()(hexLayer.radiusValue()(d)));\n });\n }\n };\n\n }\n\n /**\n * Resize the hexbin by a scaling factor applied to the maximum hex radius.\n * Use a scaling factor of 1 to grow/shrink the hexbin to the edge of the cell.\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.radiusScale().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.radiusScale()(hexLayer.radiusValue()(d)));\n });\n }\n };\n }\n\n /**\n * Compound multiple hover handlers into a single handler.\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 /**\n * No hover handler.\n * @deprecated Will be removed in future versions\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/**\n * @notExported\n */\nL.SVG\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\n/**\n * Tooltip definition for the hexbin layer.\n * This can be used to generate a tooltip for each hexbin, if an external tooltip was not provided using bindTooltip()\n */\nexport type TooltipOptions<Data> = {\n options?: L.TooltipOptions,\n content?: L.Content | ((d: HexbinData<Data>[]) => L.Content)\n}\n\n/**\n * Hexbin layer configuration options this can be provided when instantiating a new hexbin layer.\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 * If true, the layer will not be redrawn after data changes and hover handler binding.\n * @default false\n */\n noRedraw?: boolean\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<L.Point>;\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\nconst debounce = <T extends unknown[]>(\n callback: (...args: T) => void,\n delay: number,\n) => {\n let timeoutTimer: ReturnType<typeof setTimeout>;\n\n return function (...args: T) {\n clearTimeout(timeoutTimer);\n\n timeoutTimer = setTimeout(() => {\n callback(...args);\n }, delay);\n };\n};\n\n\n/**\n * A layer for displaying binned data in a hexagon grid on a Leaflet map.\n * Extends L.SVG to take advantage of built-in zoom animations.\n */\nexport class HexbinLayer<Data = L.LatLngExpression> extends L.SVG {\n /**\n * Default options for the hexbin layer\n */\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 noRedraw: false,\n // Handle parent default options\n // ...L.SVG.prototype.options,\n ...L.Renderer.prototype.options,\n ...L.Layer.prototype.options\n }\n\n /**\n * Internal functions to access the data\n */\n protected _fn = {\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 /**\n * D3 scales used for the hexbin layer\n */\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 protected _dispatch = dispatch<SVGPathElement>('mouseover', 'mouseout', 'click');\n\n // Set up the default hover handler\n protected _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 protected _data = Array<Data>()\n\n\n declare protected _map: L.Map;\n\n protected _tooltipOptions: TooltipOptions<Data> = {};\n declare protected _tooltip: L.Tooltip | undefined;\n\n // declare _container: SVGElementTagNameMap['svg'];\n\n // declare _container: HTMLElement;\n declare protected _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 protected _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', debounce(() => this.redraw(), 100));\n // Initial draw\n this.redraw();\n return this\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 */\n protected _destroyContainer() {\n select(this._container).remove();\n }\n\n /**\n * (Re)draws the hexbins data on the container\n */\n public 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._map.latLngToLayerPoint(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 protected _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.radius(this.options.radius)(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 /**\n * Get or set the radius of the hexagon grid cells\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\n /**\n * Get or set the opacity of the hexbin layer\n * @param v The opacity value to set. If an array is provided, the first element is the minimum opacity and the second is the maximum.\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 /**\n * Get or set the duration of transition animations\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 /**\n * Get or set the color scale domain extent\n * @param v The color scale extent to set. If an array is provided, the first element is the minimum extent and the second is the maximum. This means that for the purpose of color interpolation, the domain will be clipped to this extent, i.e. values below the minimum will be treated as the minimum, and values above the maximum will be treated as the maximum.\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 /**\n * Get or set the radius scale domain extent\n * @param v The radius scale extent to set. If an array is provided, the first element is the minimum extent and the second is the maximum. This means that for the purpose of radius interpolation, the domain will be clipped to this extent, i.e. values below the minimum will be treated as the minimum, and values above the maximum will be treated as the maximum.\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 /**\n * Get or set the opacity scale domain extent\n * @param v The opacity scale extent to set. If an array is provided, the first element is the minimum extent and the second is the maximum. This means that for the purpose of opacity interpolation, the domain will be clipped to this extent, i.e. values below the minimum will be treated as the minimum, and values above the maximum will be treated as the maximum.\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 /**\n * Get or set the color scale range\n * @param v The color range to set. Colors will be interpolated between all provided colors.\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 /**\n * Get or set the radius scale range\n * @param v The min and max radius range to set. If null, the range will be set to the hexagon grid cell radius value.\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 /**\n * Get or set the color scale domain\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 /**\n * Get or set the radius scale domain\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 /**\n * Get or set the value mapper for the color scale\n * @param v The value mapper to set. This function should accept an array of hexbin data and return a number to be used for color interpolation.\n * @default the length of the data in the hexbin\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 /**\n * Get or set the value mapper for the radius scale\n * @param v The value mapper to set. This function should return a number for each bin, which will be used to determine the radius of the hexagon.\n * @default the length of the data in the hexbin\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 /**\n * Get or set the value mapper for the fill color of the hexbins\n * @param v The value mapper to set. This function should return a string to be used as the fill color for the hexbin.\n * @default a color interpolated from the color scale based on the value returned by the colorValue function\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 /**\n * Get or set the data to be binned by the hexbin layer.\n * Triggers a redraw of the hexbins when set.\n * @param v The data to set. This should be an array of data to be binned.\n * @param accessor An optional function to convert the data into a LatLngExpression. If not provided, the data is assumed to be an array of LatLngExpressions.\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 if (!this.options.noRedraw) this.redraw();\n return this;\n }\n\n accessor(): (d: Data) => L.LatLngExpression {\n return this._accessor;\n }\n\n /*\n * Getter for the D3 event dispatcher\n */\n dispatch() { return this._dispatch }\n\n /**\n * Get or set the hover handler for the hexbin layer.\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 if (!this.options.noRedraw) this.redraw();\n\n return this;\n }\n\n /**\n * Get or set the tooltip content and options for the hexbin layer.\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 /**\n * Get the tooltip instance attached to the hexbin layer\n */\n getTooltip(): L.Tooltip | undefined {\n return this._tooltip\n }\n\n /**\n * Bind a tooltip to the hexbin layer with the provided content and options.\n * Useful to bind an existing tooltip instance to the hexbin layer.\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 /**\n * Unbind the tooltip from the hexbin layer\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 // Map the data into an array of latLngs using the configured lat/lng accessors\n return this._data.map((d) => {\n return L.latLng(this._accessor(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","h","HexbinHoverHandler$1","isLatLngExpression","L","debounce","callback","delay","timeoutTimer","args","HexbinLayer","options","val","scaleLinear","dispatch","hexbin","x","y","select","map","_a","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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"}
1
+ {"version":3,"file":"index.umd.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\n/**\n * Interface for handling hover events on hexbins.\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\n/**\n * Built-in hover handlers for hexbins.\n */\nexport namespace HexbinHoverHandler {\n /**\n * Resize the hexbin to fill the hexagon grid cell on hover.\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.radiusScale()(hexLayer.radiusValue()(d)));\n });\n }\n };\n\n }\n\n /**\n * Resize the hexbin by a scaling factor applied to the maximum hex radius.\n * Use a scaling factor of 1 to grow/shrink the hexbin to the edge of the cell.\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.radiusScale().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.radiusScale()(hexLayer.radiusValue()(d)));\n });\n }\n };\n }\n\n /**\n * Compound multiple hover handlers into a single handler.\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 /**\n * No hover handler.\n * @deprecated Will be removed in future versions\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/**\n * @notExported\n */\nL.SVG\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\n/**\n * Tooltip definition for the hexbin layer.\n * This can be used to generate a tooltip for each hexbin, if an external tooltip was not provided using bindTooltip()\n */\nexport type TooltipOptions<Data> = {\n options?: L.TooltipOptions,\n content?: L.Content | ((d: HexbinData<Data>[]) => L.Content)\n}\n\n\nexport type ScaleBinding<Data> = (d: HexbinData<Data>[]) => number\n\n/**\n * Hexbin layer configuration options this can be provided when instantiating a new hexbin layer.\n */\nexport interface HexbinLayerConfig<Data> {\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 * If true, the layer will not be redrawn after data changes and hover handler binding.\n * @default false\n */\n noRedraw?: boolean\n\n colorBinding?: ScaleBinding<Data>,\n radiusBinding?: ScaleBinding<Data>,\n opacityBinding?: ScaleBinding<Data>,\n fill?: (d: HexbinData<Data>[]) => 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<L.Point>;\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\nconst debounce = <T extends unknown[]>(\n callback: (...args: T) => void,\n delay: number,\n) => {\n let timeoutTimer: ReturnType<typeof setTimeout>;\n\n return function (...args: T) {\n clearTimeout(timeoutTimer);\n\n timeoutTimer = setTimeout(() => {\n callback(...args);\n }, delay);\n };\n};\n\n/**\n * A layer for displaying binned data in a hexagon grid on a Leaflet map.\n * Extends L.SVG to take advantage of built-in zoom animations.\n */\nexport class HexbinLayer<Data = L.LatLngExpression> extends L.SVG {\n /**\n * Default options for the hexbin layer\n */\n options: Required<HexbinLayerConfig<Data>> & 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 noRedraw: false,\n colorBinding: (d: HexbinData<Data>[]) => d.length,\n radiusBinding: (d: HexbinData<Data>[]) => d.length,\n opacityBinding: (d: HexbinData<Data>[]) => d.length,\n fill: (d: HexbinData<Data>[]) => {\n const val = this.options.colorBinding(d);\n return (null != val) ? this._scale.color(val) : 'none';\n },\n // Handle parent default options\n // ...L.SVG.prototype.options,\n ...L.Renderer.prototype.options,\n ...L.Layer.prototype.options\n }\n\n /**\n * D3 scales used for the hexbin layer\n */\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 protected _dispatch = dispatch('mouseover', 'mouseout', 'click', 'draw');\n\n // Set up the default hover handler\n protected _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 protected _data = Array<Data>()\n\n\n declare protected _map: L.Map;\n\n protected _tooltipOptions: TooltipOptions<Data> = {};\n declare protected _tooltip: L.Tooltip | undefined;\n\n // declare _container: SVGElementTagNameMap['svg'];\n\n // declare _container: HTMLElement;\n declare protected _d3Container: d3.Selection<SVGGElement, unknown, null, undefined>;\n\n public constructor(options?: HexbinLayerConfig<Data>) {\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 protected _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', debounce(() => this.redraw(), 100));\n // Initial draw\n this.redraw();\n return this\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 */\n protected _destroyContainer() {\n select(this._container).remove();\n }\n\n /**\n * (Re)draws the hexbins data on the container\n */\n public 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._map.latLngToLayerPoint(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 protected _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.radius(this.options.radius)(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.options.colorBinding, thisLayer.options.colorScaleExtent);\n const radiusExtent = thisLayer._getExtent(bins, thisLayer.options.radiusBinding, thisLayer.options.radiusScaleExtent);\n const opacityExtent = thisLayer._getExtent(bins, thisLayer.options.opacityBinding, 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.options.fill.bind(thisLayer))\n .attr('fill-opacity', (d) => thisLayer._scale.opacity(thisLayer.options.opacityBinding.call(thisLayer, d)))\n .attr('stroke-opacity', (d) => thisLayer._scale.opacity(thisLayer.options.opacityBinding.call(thisLayer, d)))\n .attr('d', (d) => {\n return thisLayer._hexLayout.hexagon(thisLayer._scale.radius(thisLayer.options.radiusBinding.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.options.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.options.opacityBinding.call(thisLayer, d)))\n .attr('stroke-opacity', (d) => thisLayer._scale.opacity(thisLayer.options.opacityBinding.call(thisLayer, d)))\n .attr('d', (d) => thisLayer._hexLayout.hexagon(thisLayer._scale.radius(thisLayer.options.radiusBinding.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 thisLayer._dispatch.call('draw', thisLayer, data, thisLayer, {\n colorExtent\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 /**\n * Get or set the radius of the hexagon grid cells\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\n /**\n * Get or set the opacity of the hexbin layer\n * @param v The opacity value to set. If an array is provided, the first element is the minimum opacity and the second is the maximum.\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 /**\n * Get or set the duration of transition animations\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 /**\n * Get or set the color scale domain extent\n * @param v The color scale extent to set. If an array is provided, the first element is the minimum extent and the second is the maximum. This means that for the purpose of color interpolation, the domain will be clipped to this extent, i.e. values below the minimum will be treated as the minimum, and values above the maximum will be treated as the maximum.\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 /**\n * Get or set the radius scale domain extent\n * @param v The radius scale extent to set. If an array is provided, the first element is the minimum extent and the second is the maximum. This means that for the purpose of radius interpolation, the domain will be clipped to this extent, i.e. values below the minimum will be treated as the minimum, and values above the maximum will be treated as the maximum.\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 /**\n * Get or set the opacity scale domain extent\n * @param v The opacity scale extent to set. If an array is provided, the first element is the minimum extent and the second is the maximum. This means that for the purpose of opacity interpolation, the domain will be clipped to this extent, i.e. values below the minimum will be treated as the minimum, and values above the maximum will be treated as the maximum.\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 /**\n * Get or set the color scale range\n * @param v The color range to set. Colors will be interpolated between all provided colors.\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 /**\n * Get or set the radius scale range\n * @param v The min and max radius range to set. If null, the range will be set to the hexagon grid cell radius value.\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 /**\n * Get or set the color scale domain\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 /**\n * Get or set the radius scale domain\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 /**\n * Get or set the value mapper for the color scale\n * @param v The value mapper to set. This function should accept an array of hexbin data and return a number to be used for color interpolation.\n * @default the length of the data in the hexbin\n */\n colorValue(): ScaleBinding<Data>;\n colorValue(v: ScaleBinding<Data>): this;\n colorValue(v?: ScaleBinding<Data>) {\n if (v === undefined) { return this.options.colorBinding; }\n this.options.colorBinding = v;\n\n return this;\n }\n\n /**\n * Get or set the value mapper for the radius scale\n * @param v The value mapper to set. This function should return a number for each bin, which will be used to determine the radius of the hexagon.\n * @default the length of the data in the hexbin\n */\n radiusValue(): ScaleBinding<Data>;\n radiusValue(v: ScaleBinding<Data>): this;\n radiusValue(v?: ScaleBinding<Data>) {\n if (v === undefined) { return this.options.radiusBinding; }\n this.options.radiusBinding = v;\n\n return this;\n }\n\n /**\n * Get or set the value mapper for the fill color of the hexbins\n * @param v The value mapper to set. This function should return a string to be used as the fill color for the hexbin.\n * @default a color interpolated from the color scale based on the value returned by the colorValue function\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.options.fill; }\n this.options.fill = v;\n\n return this;\n }\n\n /**\n * Get or set the data to be binned by the hexbin layer.\n * Triggers a redraw of the hexbins when set.\n * @param v The data to set. This should be an array of data to be binned.\n * @param accessor An optional function to convert the data into a LatLngExpression. If not provided, the data is assumed to be an array of LatLngExpressions.\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 if (!this.options.noRedraw) this.redraw();\n return this;\n }\n\n accessor(): (d: Data) => L.LatLngExpression {\n return this._accessor;\n }\n\n /*\n * Getter for the D3 event dispatcher\n */\n dispatch() { return this._dispatch }\n\n /**\n * Get or set the hover handler for the hexbin layer.\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 if (!this.options.noRedraw) this.redraw();\n\n return this;\n }\n\n /**\n * Get or set the color scale binding function for the hexbin layer.\n * This function is used to determine the color of each hexbin based on the data.\n */\n colorBinding(): ScaleBinding<Data>;\n colorBinding(v: ScaleBinding<Data>): this;\n colorBinding(v?: ScaleBinding<Data>): this | (ScaleBinding<Data>) {\n if (v === undefined) { return this.options.colorBinding; }\n this.options.colorBinding = v;\n if (!this.options.noRedraw) this.redraw();\n return this;\n }\n\n /**\n * Get or set the radius scale binding function for the hexbin layer.\n * This function is used to determine the radius of each hexbin based on the data.\n */\n radiusBinding(): ScaleBinding<Data>;\n radiusBinding(v: ScaleBinding<Data>): this;\n radiusBinding(v?: ScaleBinding<Data>): this | (ScaleBinding<Data>) {\n if (v === undefined) { return this.options.radiusBinding; }\n this.options.radiusBinding = v;\n if (!this.options.noRedraw) this.redraw();\n return this;\n }\n\n /**\n * Get or set the opacity scale binding function for the hexbin layer.\n * This function is used to determine the opacity of each hexbin based on the data.\n */\n opacityBinding(): ScaleBinding<Data>;\n opacityBinding(v: ScaleBinding<Data>): this;\n opacityBinding(v?: ScaleBinding<Data>): this | (ScaleBinding<Data>) {\n if (v === undefined) { return this.options.opacityBinding; }\n this.options.opacityBinding = v;\n if (!this.options.noRedraw) this.redraw();\n return this;\n }\n\n /**\n * Get or set the fill binding function for the hexbin layer.\n * This function is used to determine the fill color of each hexbin based on the data.\n * Can be used to override the default color scale function.\n */\n fillColor(): (d: HexbinData<Data>[]) => string;\n fillColor(v: (d: HexbinData<Data>[]) => string): this;\n fillColor(v?: (d: HexbinData<Data>[]) => string): this | ((d: HexbinData<Data>[]) => string) {\n if (v === undefined) { return this.options.fill; }\n this.options.fill = v;\n if (!this.options.noRedraw) this.redraw();\n return this;\n }\n\n /**\n * Get or set the tooltip content and options for the hexbin layer.\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 /**\n * Get the tooltip instance attached to the hexbin layer\n */\n getTooltip(): L.Tooltip | undefined {\n return this._tooltip\n }\n\n /**\n * Bind a tooltip to the hexbin layer with the provided content and options.\n * Useful to bind an existing tooltip instance to the hexbin layer.\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 /**\n * Unbind the tooltip from the hexbin layer\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 // Map the data into an array of latLngs using the configured lat/lng accessors\n return this._data.map((d) => {\n return L.latLng(this._accessor(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 onDraw(handler: (layer: HexbinLayer, data: HexbinData<Data>[], view: { colorExtent: [number, number] }) => void) {\n this.dispatch().on('draw', handler);\n }\n\n /**\n * Bind callback to hexagon mouseover event\n */\n onMouseOver(handler: (data: HexbinData<Data>[], layer: HexbinLayer, ev: MouseEvent) => void) {\n this.dispatch().on('mouseover', handler);\n }\n\n /**\n * Bind callback to hexagon mouseout event\n */\n onMouseOut(handler: (data: HexbinData<Data>[], layer: HexbinLayer, ev: MouseEvent) => void) {\n this.dispatch().on('mouseout', handler);\n }\n\n /**\n * Bind callback to hexagon click event\n */\n onClick(handler: (data: HexbinData<Data>[], latLng: L.LatLng, layer: HexbinLayer, ev: MouseEvent) => void) {\n this.dispatch().on('click', handler);\n }\n}\n\n/**\n * Factory function to instanciate a new hexbin layer\n */\nexport function hexbinLayer<Data = L.LatLngExpression>(options?: HexbinLayerConfig<Data>) {\n return new HexbinLayer<Data>(options);\n}\n\n\n"],"names":["HexbinHoverHandler","resizeFill","svg","hexLayer","event","data","d3","d","resizeScale","radiusScale","compound","handlers","none","h","HexbinHoverHandler$1","isLatLngExpression","L","debounce","callback","delay","timeoutTimer","args","HexbinLayer","options","val","scaleLinear","dispatch","hexbin","x","y","select","map","_a","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","handler","hexbinLayer"],"mappings":"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"}
@@ -15,10 +15,11 @@ export type TooltipOptions<Data> = {
15
15
  options?: L.TooltipOptions;
16
16
  content?: L.Content | ((d: HexbinData<Data>[]) => L.Content);
17
17
  };
18
+ export type ScaleBinding<Data> = (d: HexbinData<Data>[]) => number;
18
19
  /**
19
20
  * Hexbin layer configuration options this can be provided when instantiating a new hexbin layer.
20
21
  */
21
- export interface HexbinLayerConfig {
22
+ export interface HexbinLayerConfig<Data> {
22
23
  /**
23
24
  * Hex grid cell radius in pixels.
24
25
  * This value should be a positive number.
@@ -90,6 +91,10 @@ export interface HexbinLayerConfig {
90
91
  * @default false
91
92
  */
92
93
  noRedraw?: boolean;
94
+ colorBinding?: ScaleBinding<Data>;
95
+ radiusBinding?: ScaleBinding<Data>;
96
+ opacityBinding?: ScaleBinding<Data>;
97
+ fill?: (d: HexbinData<Data>[]) => string;
93
98
  }
94
99
  /**
95
100
  * Hexbin data attached to each hexagon, once binned.
@@ -107,16 +112,7 @@ export declare class HexbinLayer<Data = L.LatLngExpression> extends L.SVG {
107
112
  /**
108
113
  * Default options for the hexbin layer
109
114
  */
110
- options: Required<HexbinLayerConfig> & L.RendererOptions;
111
- /**
112
- * Internal functions to access the data
113
- */
114
- protected _fn: {
115
- colorValue: (d: HexbinData<Data>[]) => number;
116
- radiusValue: (d: HexbinData<Data>[]) => number;
117
- opacityValue: (d: HexbinData<Data>[]) => number;
118
- fill: (d: HexbinData<Data>[]) => string;
119
- };
115
+ options: Required<HexbinLayerConfig<Data>> & L.RendererOptions;
120
116
  /**
121
117
  * D3 scales used for the hexbin layer
122
118
  */
@@ -125,7 +121,7 @@ export declare class HexbinLayer<Data = L.LatLngExpression> extends L.SVG {
125
121
  radius: import('d3').ScaleLinear<number, number, never>;
126
122
  opacity: import('d3').ScaleLinear<number, number, never>;
127
123
  };
128
- protected _dispatch: import('d3').Dispatch<SVGPathElement>;
124
+ protected _dispatch: import('d3').Dispatch<object>;
129
125
  protected _hoverHandler: HexbinHoverHandler<Data>;
130
126
  _hexLayout: import('d3-hexbin').Hexbin<HexbinData<Data>>;
131
127
  protected _data: Data[];
@@ -133,7 +129,7 @@ export declare class HexbinLayer<Data = L.LatLngExpression> extends L.SVG {
133
129
  protected _tooltipOptions: TooltipOptions<Data>;
134
130
  protected _tooltip: L.Tooltip | undefined;
135
131
  protected _d3Container: d3.Selection<SVGGElement, unknown, null, undefined>;
136
- constructor(options?: HexbinLayerConfig);
132
+ constructor(options?: HexbinLayerConfig<Data>);
137
133
  protected _accessor(d: Data): L.LatLngExpression;
138
134
  /**
139
135
  * Create the SVG container for the hexbins
@@ -222,15 +218,15 @@ export declare class HexbinLayer<Data = L.LatLngExpression> extends L.SVG {
222
218
  * @param v The value mapper to set. This function should accept an array of hexbin data and return a number to be used for color interpolation.
223
219
  * @default the length of the data in the hexbin
224
220
  */
225
- colorValue(): (d: HexbinData<Data>[]) => number;
226
- colorValue(v: (d: HexbinData<Data>[]) => number): this;
221
+ colorValue(): ScaleBinding<Data>;
222
+ colorValue(v: ScaleBinding<Data>): this;
227
223
  /**
228
224
  * Get or set the value mapper for the radius scale
229
225
  * @param v The value mapper to set. This function should return a number for each bin, which will be used to determine the radius of the hexagon.
230
226
  * @default the length of the data in the hexbin
231
227
  */
232
- radiusValue(): (d: HexbinData<Data>[]) => number;
233
- radiusValue(v: (d: HexbinData<Data>[]) => number): this;
228
+ radiusValue(): ScaleBinding<Data>;
229
+ radiusValue(v: ScaleBinding<Data>): this;
234
230
  /**
235
231
  * Get or set the value mapper for the fill color of the hexbins
236
232
  * @param v The value mapper to set. This function should return a string to be used as the fill color for the hexbin.
@@ -248,12 +244,37 @@ export declare class HexbinLayer<Data = L.LatLngExpression> extends L.SVG {
248
244
  data(v: Data extends L.LatLngExpression ? Data[] : never): this;
249
245
  data(v: Data[], accessor?: (d: Data) => L.LatLngExpression): this;
250
246
  accessor(): (d: Data) => L.LatLngExpression;
251
- dispatch(): import('d3').Dispatch<SVGPathElement>;
247
+ dispatch(): import('d3').Dispatch<object>;
252
248
  /**
253
249
  * Get or set the hover handler for the hexbin layer.
254
250
  */
255
251
  hoverHandler(): HexbinHoverHandler<Data>;
256
252
  hoverHandler(v: HexbinHoverHandler<Data>): this;
253
+ /**
254
+ * Get or set the color scale binding function for the hexbin layer.
255
+ * This function is used to determine the color of each hexbin based on the data.
256
+ */
257
+ colorBinding(): ScaleBinding<Data>;
258
+ colorBinding(v: ScaleBinding<Data>): this;
259
+ /**
260
+ * Get or set the radius scale binding function for the hexbin layer.
261
+ * This function is used to determine the radius of each hexbin based on the data.
262
+ */
263
+ radiusBinding(): ScaleBinding<Data>;
264
+ radiusBinding(v: ScaleBinding<Data>): this;
265
+ /**
266
+ * Get or set the opacity scale binding function for the hexbin layer.
267
+ * This function is used to determine the opacity of each hexbin based on the data.
268
+ */
269
+ opacityBinding(): ScaleBinding<Data>;
270
+ opacityBinding(v: ScaleBinding<Data>): this;
271
+ /**
272
+ * Get or set the fill binding function for the hexbin layer.
273
+ * This function is used to determine the fill color of each hexbin based on the data.
274
+ * Can be used to override the default color scale function.
275
+ */
276
+ fillColor(): (d: HexbinData<Data>[]) => string;
277
+ fillColor(v: (d: HexbinData<Data>[]) => string): this;
257
278
  /**
258
279
  * Get or set the tooltip content and options for the hexbin layer.
259
280
  */
@@ -273,8 +294,23 @@ export declare class HexbinLayer<Data = L.LatLngExpression> extends L.SVG {
273
294
  unbindTooltip(): this;
274
295
  getLatLngs(): L.LatLng[];
275
296
  toGeoJSON(): GeoJSON.Feature<GeoJSON.MultiPoint, L.LatLng>;
297
+ onDraw(handler: (layer: HexbinLayer, data: HexbinData<Data>[], view: {
298
+ colorExtent: [number, number];
299
+ }) => void): void;
300
+ /**
301
+ * Bind callback to hexagon mouseover event
302
+ */
303
+ onMouseOver(handler: (data: HexbinData<Data>[], layer: HexbinLayer, ev: MouseEvent) => void): void;
304
+ /**
305
+ * Bind callback to hexagon mouseout event
306
+ */
307
+ onMouseOut(handler: (data: HexbinData<Data>[], layer: HexbinLayer, ev: MouseEvent) => void): void;
308
+ /**
309
+ * Bind callback to hexagon click event
310
+ */
311
+ onClick(handler: (data: HexbinData<Data>[], latLng: L.LatLng, layer: HexbinLayer, ev: MouseEvent) => void): void;
276
312
  }
277
313
  /**
278
314
  * Factory function to instanciate a new hexbin layer
279
315
  */
280
- export declare function hexbinLayer<Data = L.LatLngExpression>(options?: HexbinLayerConfig): HexbinLayer<Data>;
316
+ export declare function hexbinLayer<Data = L.LatLngExpression>(options?: HexbinLayerConfig<Data>): HexbinLayer<Data>;
@@ -1,3 +1,3 @@
1
- import { HexbinLayer as CHexbinLayer, HexbinLayerConfig as IHexbinLayerConfig, hexbinLayer, HexbinData, TooltipOptions } from './HexbinLayer';
1
+ import { HexbinLayer as CHexbinLayer, HexbinLayerConfig as IHexbinLayerConfig, hexbinLayer, HexbinData, TooltipOptions, ScaleBinding } from './HexbinLayer';
2
2
  import { default as HexbinHoverHandler } from './HexbinHoverHandler';
3
- export { type HexbinData, HexbinHoverHandler, CHexbinLayer as HexbinLayer, hexbinLayer, type IHexbinLayerConfig as HexbinLayerConfig, type TooltipOptions, };
3
+ export { type HexbinData, type ScaleBinding, HexbinHoverHandler, CHexbinLayer as HexbinLayer, hexbinLayer, type IHexbinLayerConfig as HexbinLayerConfig, type TooltipOptions, };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "leaflet-hexbin",
3
- "version": "0.1.5",
3
+ "version": "0.2.0",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -37,19 +37,19 @@
37
37
  "geojson": "^0.5.0"
38
38
  },
39
39
  "devDependencies": {
40
- "@tsconfig/node22": "^22.0.0",
40
+ "@tsconfig/node22": "^22.0.1",
41
41
  "@types/d3": "^7.4.3",
42
42
  "@types/d3-hexbin": "^0.2.5",
43
43
  "@types/jsdom": "^21.1.7",
44
- "@types/leaflet": "^1.9.16",
45
- "@types/node": "^22.13.1",
46
- "@vitest/eslint-plugin": "1.1.25",
47
- "eslint": "^9.20.0",
44
+ "@types/leaflet": "^1.9.17",
45
+ "@types/node": "^22.15.18",
46
+ "@vitest/eslint-plugin": "^1.1.44",
47
+ "eslint": "^9.26.0",
48
48
  "jiti": "^2.4.2",
49
- "jsdom": "^26.0.0",
50
- "npm-run-all2": "^7.0.2",
51
- "typescript": "~5.7.3",
52
- "vite-plugin-dts": "^4.5.0"
49
+ "jsdom": "^26.1.0",
50
+ "npm-run-all2": "^8.0.1",
51
+ "typescript": "~5.8.3",
52
+ "vite-plugin-dts": "^4.5.4"
53
53
  },
54
54
  "scripts": {
55
55
  "dev": "vite",