leaflet-hexbin 0.1.1 → 0.1.3
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 +147 -147
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/types/HexbinHoverHandler.d.ts +19 -4
- package/dist/types/HexbinLayer.d.ts +109 -25
- package/dist/types/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
@@ -1,52 +1,52 @@
|
|
1
1
|
import * as f from "d3";
|
2
2
|
import { scaleLinear as y, dispatch as R, select as L, extent as T } from "d3";
|
3
|
-
import { hexbin as
|
4
|
-
import * as
|
3
|
+
import { hexbin as w } from "d3-hexbin";
|
4
|
+
import * as u from "leaflet";
|
5
5
|
var v;
|
6
6
|
((r) => {
|
7
|
-
function
|
7
|
+
function o() {
|
8
8
|
return {
|
9
|
-
mouseover: function(
|
10
|
-
f.select(
|
11
|
-
return
|
9
|
+
mouseover: function(c, i, a, p) {
|
10
|
+
f.select(c.parentElement).select("path.hexbin-hexagon").transition().duration(i.options.duration).attr("d", function(h) {
|
11
|
+
return i._hexLayout.hexagon(i.options.radius);
|
12
12
|
});
|
13
13
|
},
|
14
|
-
mouseout: function(
|
15
|
-
f.select(
|
16
|
-
return
|
14
|
+
mouseout: function(c, i, a, p) {
|
15
|
+
f.select(c.parentElement).select("path.hexbin-hexagon").transition().duration(i.options.duration).attr("d", function(h) {
|
16
|
+
return i._hexLayout.hexagon(i.radiusScale()(i.radiusValue()(h)));
|
17
17
|
});
|
18
18
|
}
|
19
19
|
};
|
20
20
|
}
|
21
|
-
r.resizeFill =
|
22
|
-
function
|
21
|
+
r.resizeFill = o;
|
22
|
+
function e(c = 1.5) {
|
23
23
|
return {
|
24
|
-
mouseover: function(
|
25
|
-
f.select(
|
26
|
-
return
|
24
|
+
mouseover: function(i, a, p, d) {
|
25
|
+
f.select(i.parentElement).select("path.hexbin-hexagon").transition().duration(a.options.duration).attr("d", function() {
|
26
|
+
return a._hexLayout.hexagon(a.radiusScale().range()[1] * c);
|
27
27
|
});
|
28
28
|
},
|
29
|
-
mouseout: function(
|
30
|
-
f.select(
|
29
|
+
mouseout: function(i, a, p, d) {
|
30
|
+
f.select(i.parentElement).select("path.hexbin-hexagon").transition().duration(a.options.duration).attr("d", (g) => a._hexLayout.hexagon(a.radiusScale()(a.radiusValue()(g))));
|
31
31
|
}
|
32
32
|
};
|
33
33
|
}
|
34
|
-
r.resizeScale =
|
35
|
-
function
|
34
|
+
r.resizeScale = e;
|
35
|
+
function t(c = [l()]) {
|
36
36
|
return {
|
37
|
-
mouseover: function(
|
38
|
-
|
39
|
-
h.mouseover(
|
37
|
+
mouseover: function(i, a, p, d) {
|
38
|
+
c.forEach((h) => {
|
39
|
+
h.mouseover(i, a, p, d);
|
40
40
|
});
|
41
41
|
},
|
42
|
-
mouseout: function(
|
43
|
-
|
44
|
-
h.mouseout(
|
42
|
+
mouseout: function(i, a, p, d) {
|
43
|
+
c.forEach((h) => {
|
44
|
+
h.mouseout(i, a, p, d);
|
45
45
|
});
|
46
46
|
}
|
47
47
|
};
|
48
48
|
}
|
49
|
-
r.compound =
|
49
|
+
r.compound = t;
|
50
50
|
function l() {
|
51
51
|
return {
|
52
52
|
mouseover: function() {
|
@@ -58,11 +58,11 @@ var v;
|
|
58
58
|
r.none = l;
|
59
59
|
})(v || (v = {}));
|
60
60
|
const V = v;
|
61
|
-
function
|
62
|
-
return r instanceof
|
61
|
+
function O(r) {
|
62
|
+
return r instanceof u.LatLng || typeof r == "object" && "lat" in r && "lng" in r || Array.isArray(r) && r.length === 2 && typeof r[0] == "number" && typeof r[1] == "number";
|
63
63
|
}
|
64
|
-
class
|
65
|
-
constructor(
|
64
|
+
class C extends u.SVG {
|
65
|
+
constructor(o) {
|
66
66
|
super(), this.options = {
|
67
67
|
radius: 12,
|
68
68
|
opacity: 0.6,
|
@@ -75,30 +75,29 @@ class H extends c.SVG {
|
|
75
75
|
colorRange: ["#f7fbff", "#08306b"],
|
76
76
|
radiusRange: null,
|
77
77
|
pointerEvents: "all",
|
78
|
+
noRedraw: !1,
|
78
79
|
// Handle parent default options
|
79
80
|
// ...L.SVG.prototype.options,
|
80
|
-
...
|
81
|
-
...
|
81
|
+
...u.Renderer.prototype.options,
|
82
|
+
...u.Layer.prototype.options
|
82
83
|
}, this._fn = {
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
const o = this._fn.colorValue(i);
|
90
|
-
return o != null ? this._scale.color(o) : "none";
|
84
|
+
colorValue: (e) => e.length,
|
85
|
+
radiusValue: (e) => e.length,
|
86
|
+
opacityValue: (e) => e.length,
|
87
|
+
fill: (e) => {
|
88
|
+
const t = this._fn.colorValue(e);
|
89
|
+
return t != null ? this._scale.color(t) : "none";
|
91
90
|
}
|
92
91
|
}, this._scale = {
|
93
92
|
color: y(),
|
94
93
|
radius: y(),
|
95
94
|
opacity: y()
|
96
|
-
}, this._dispatch = R("mouseover", "mouseout", "click"), this._hoverHandler = V.none(), this._hexLayout =
|
95
|
+
}, this._dispatch = R("mouseover", "mouseout", "click"), this._hoverHandler = V.none(), this._hexLayout = w().radius(this.options.radius).x(({ point: { x: e } }) => e).y(({ point: { y: e } }) => e), 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(
|
97
96
|
typeof this.options.opacity == "number" ? [this.options.opacity, this.options.opacity] : this.options.opacity
|
98
97
|
).clamp(!0);
|
99
98
|
}
|
100
|
-
_accessor(
|
101
|
-
return
|
99
|
+
_accessor(o) {
|
100
|
+
return o;
|
102
101
|
}
|
103
102
|
/**
|
104
103
|
* Create the SVG container for the hexbins
|
@@ -111,181 +110,182 @@ class H extends c.SVG {
|
|
111
110
|
* Callback made by Leaflet when the layer is added to the map
|
112
111
|
* @param map Reference to the map to which this layer has been added
|
113
112
|
*/
|
114
|
-
onAdd(
|
115
|
-
var
|
116
|
-
return super.onAdd(
|
117
|
-
}
|
118
|
-
_project(t) {
|
119
|
-
const { x: i, y: o } = this._map.latLngToLayerPoint(t);
|
120
|
-
return [i, o];
|
113
|
+
onAdd(o) {
|
114
|
+
var e;
|
115
|
+
return super.onAdd(o), this._map = o, (e = this._tooltip) == null || e.setLatLng([0, 0]).addTo(o), o.on("moveend", this.redraw, this), this.redraw(), this;
|
121
116
|
}
|
122
117
|
/**
|
123
118
|
* Callback made by Leaflet when the layer is removed from the map
|
124
119
|
* @param map Reference to the map from which this layer is being removed
|
125
120
|
*/
|
126
|
-
onRemove(
|
127
|
-
return this._destroyContainer(),
|
121
|
+
onRemove(o) {
|
122
|
+
return this._destroyContainer(), o.off("moveend", this.redraw, this), this;
|
128
123
|
}
|
129
124
|
/**
|
130
125
|
* Clean up the svg container
|
131
|
-
* @private
|
132
126
|
*/
|
133
127
|
_destroyContainer() {
|
134
128
|
L(this._container).remove();
|
135
129
|
}
|
136
130
|
/**
|
137
131
|
* (Re)draws the hexbins data on the container
|
138
|
-
* @private
|
139
132
|
*/
|
140
133
|
redraw() {
|
141
|
-
const
|
142
|
-
if (!
|
143
|
-
const
|
144
|
-
const
|
145
|
-
return { coord:
|
146
|
-
}),
|
147
|
-
return "hexbin zoom-" +
|
148
|
-
}).merge(
|
149
|
-
|
150
|
-
}
|
151
|
-
_linearlySpace(
|
152
|
-
const l = (
|
153
|
-
return Array.from({ length:
|
154
|
-
}
|
155
|
-
_createHexagons(
|
156
|
-
const
|
157
|
-
({ x:
|
158
|
-
),
|
159
|
-
|
160
|
-
|
161
|
-
|
134
|
+
const o = this;
|
135
|
+
if (!o._map) return;
|
136
|
+
const e = o._data.map((i) => {
|
137
|
+
const a = o._accessor(i), p = o._map.latLngToLayerPoint(a);
|
138
|
+
return { coord: a, point: p, data: i };
|
139
|
+
}), t = this._d3Container.selectAll("g.hexbin").data([this._map.getZoom()], (i) => i), c = t.enter().append("g").attr("class", function(i) {
|
140
|
+
return "hexbin zoom-" + i;
|
141
|
+
}).merge(t);
|
142
|
+
t.exit().remove(), this._createHexagons(c, e);
|
143
|
+
}
|
144
|
+
_linearlySpace(o, e, t) {
|
145
|
+
const l = (e - o) / Math.max(t - 1, 1);
|
146
|
+
return Array.from({ length: t }, (c, i) => o + i * l);
|
147
|
+
}
|
148
|
+
_createHexagons(o, e) {
|
149
|
+
const t = this, l = t._map.getSize(), c = t._map.getBounds().pad(t.options.radius * 2 / Math.max(l.x, l.y)), i = t._hexLayout(e).filter(
|
150
|
+
({ x: n, y: s }) => c.contains(t._map.layerPointToLatLng(u.point(n, s)))
|
151
|
+
), a = t._getExtent(i, t._fn.colorValue, t.options.colorScaleExtent), p = t._getExtent(i, t._fn.radiusValue, t.options.radiusScaleExtent), d = t._getExtent(i, t._fn.opacityValue, t.options.opacityScaleExtent), h = this.options.colorDomain ?? t._linearlySpace(
|
152
|
+
a[0],
|
153
|
+
a[1],
|
154
|
+
t._scale.color.range().length
|
162
155
|
), g = this.options.radiusDomain || p;
|
163
|
-
|
164
|
-
const m =
|
165
|
-
m.select("path.hexbin-hexagon").transition().duration(
|
166
|
-
const x = m.enter().append("g").attr("class", "hexbin-container").style("pointer-events",
|
167
|
-
x.on("mouseover", function(
|
156
|
+
t._scale.color.domain(h), t._scale.radius.domain(g), t._scale.opacity.domain(d);
|
157
|
+
const m = o.selectAll("g.hexbin-container").data(i, ({ x: n, y: s }) => `${n}:${s}`);
|
158
|
+
m.select("path.hexbin-hexagon").transition().duration(t.options.duration).attr("fill", t._fn.fill.bind(t)).attr("fill-opacity", (n) => t._scale.opacity(t._fn.opacityValue.call(t, n))).attr("stroke-opacity", (n) => t._scale.opacity(t._fn.opacityValue.call(t, n))).attr("d", (n) => t._hexLayout.hexagon(t._scale.radius(t._fn.radiusValue.call(t, n))));
|
159
|
+
const x = m.enter().append("g").attr("class", "hexbin-container").style("pointer-events", t.options.pointerEvents);
|
160
|
+
x.on("mouseover", function(n, s) {
|
168
161
|
L(this).raise();
|
169
162
|
});
|
170
|
-
const b = x.append("path").attr("class", "hexbin-hexagon").attr("transform", ({ x:
|
171
|
-
b.transition().duration(
|
163
|
+
const b = x.append("path").attr("class", "hexbin-hexagon").attr("transform", ({ x: n, y: s }) => `translate(${n},${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");
|
164
|
+
b.transition().duration(t.options.duration).attr("fill-opacity", (n) => t._scale.opacity(t._fn.opacityValue.call(t, n))).attr("stroke-opacity", (n) => t._scale.opacity(t._fn.opacityValue.call(t, n))).attr("d", (n) => t._hexLayout.hexagon(t._scale.radius(t._fn.radiusValue.call(t, n)))).style("pointer-events", "all"), x.append("path").attr("class", "hexbin-grid").attr("transform", ({ x: n, y: s }) => `translate(${n},${s})`).attr("d", () => t._hexLayout.hexagon(t.options.radius)).attr("fill", "none").attr("stroke", "none"), b.on("mouseover", function(n, s) {
|
172
165
|
var _, S;
|
173
|
-
(_ =
|
174
|
-
typeof
|
166
|
+
(_ = t._tooltipOptions) != null && _.content && ((S = t._tooltip) == null || S.setContent(
|
167
|
+
typeof t._tooltipOptions.content == "function" ? t._tooltipOptions.content(s) : t._tooltipOptions.content
|
175
168
|
).setLatLng(
|
176
|
-
|
177
|
-
).openOn(
|
178
|
-
}).on("mouseout", function(
|
169
|
+
t._map.layerPointToLatLng(u.point(s.x, s.y))
|
170
|
+
).openOn(t._map)), t._hoverHandler.mouseover(this, t, n, s), t._dispatch.call("mouseover", this, s, t, n), this.classList.add("hover");
|
171
|
+
}).on("mouseout", function(n, s) {
|
179
172
|
var _;
|
180
|
-
(_ =
|
181
|
-
}).on("click", function(
|
182
|
-
const _ =
|
183
|
-
|
173
|
+
(_ = t._tooltip) == null || _.close(), t._hoverHandler.mouseout(this, t, n, s), t._dispatch.call("mouseout", this, s, t, n), this.classList.remove("hover");
|
174
|
+
}).on("click", function(n, s) {
|
175
|
+
const _ = t._map.layerPointToLatLng(u.point(s.x, s.y));
|
176
|
+
t._dispatch.call("click", this, s, _, t, n), n.stopPropagation();
|
184
177
|
});
|
185
178
|
const E = m.exit();
|
186
|
-
E.select("path.hexbin-hexagon").transition().duration(
|
187
|
-
}
|
188
|
-
_getExtent(t, i, o) {
|
189
|
-
let l = T(t, i.bind(this));
|
190
|
-
return (l[0] === void 0 || l[1] === void 0) && (l = [0, 0]), o[0] != null && (l[0] = o[0]), o[1] != null && (l[1] = o[1]), l;
|
191
|
-
}
|
192
|
-
radius(t) {
|
193
|
-
return t === void 0 ? this.options.radius : (this.options.radius = t, this._hexLayout.radius(t), this.options.radiusRange == null && this._scale.radius.range([this.options.radius, this.options.radius]).clamp(!0), this);
|
179
|
+
E.select("path.hexbin-hexagon").transition().duration(t.options.duration).attr("fill-opacity", 0).attr("stroke-opacity", 0).attr("d", (n) => t._hexLayout.hexagon(0)), E.transition().duration(t.options.duration).remove();
|
194
180
|
}
|
195
|
-
|
196
|
-
|
181
|
+
_getExtent(o, e, t) {
|
182
|
+
let l = T(o, e.bind(this));
|
183
|
+
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;
|
197
184
|
}
|
198
|
-
|
199
|
-
return
|
185
|
+
radius(o) {
|
186
|
+
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);
|
200
187
|
}
|
201
|
-
|
202
|
-
return
|
188
|
+
opacity(o) {
|
189
|
+
return o === void 0 ? this.options.opacity : (this.options.opacity = o, this._scale.opacity.range(typeof o == "number" ? [o, o] : o).clamp(!0), this);
|
203
190
|
}
|
204
|
-
|
205
|
-
return
|
191
|
+
duration(o) {
|
192
|
+
return o === void 0 ? this.options.duration : (this.options.duration = o, this);
|
206
193
|
}
|
207
|
-
|
208
|
-
return
|
194
|
+
colorScaleExtent(o) {
|
195
|
+
return o === void 0 ? this.options.colorScaleExtent : (this.options.colorScaleExtent = o, this);
|
209
196
|
}
|
210
|
-
|
211
|
-
return
|
197
|
+
radiusScaleExtent(o) {
|
198
|
+
return o === void 0 ? this.options.radiusScaleExtent : (this.options.radiusScaleExtent = o, this);
|
212
199
|
}
|
213
|
-
|
214
|
-
return
|
200
|
+
opacityScaleExtent(o) {
|
201
|
+
return o === void 0 ? this.options.opacityScaleExtent : (this.options.opacityScaleExtent = o, this);
|
215
202
|
}
|
216
|
-
|
217
|
-
return
|
203
|
+
colorRange(o) {
|
204
|
+
return o === void 0 ? this.options.colorRange : (this.options.colorRange = o, this._scale.color.range(o), this);
|
218
205
|
}
|
219
|
-
|
220
|
-
return
|
206
|
+
radiusRange(o) {
|
207
|
+
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);
|
221
208
|
}
|
222
|
-
|
223
|
-
return
|
209
|
+
colorScale(o) {
|
210
|
+
return o === void 0 ? this._scale.color : (this._scale.color = o, this);
|
224
211
|
}
|
225
|
-
|
226
|
-
return
|
212
|
+
radiusScale(o) {
|
213
|
+
return o === void 0 ? this._scale.radius : (this._scale.radius = o, this);
|
227
214
|
}
|
228
|
-
colorValue(
|
229
|
-
return
|
215
|
+
colorValue(o) {
|
216
|
+
return o === void 0 ? this._fn.colorValue : (this._fn.colorValue = o, this);
|
230
217
|
}
|
231
|
-
radiusValue(
|
232
|
-
return
|
218
|
+
radiusValue(o) {
|
219
|
+
return o === void 0 ? this._fn.radiusValue : (this._fn.radiusValue = o, this);
|
233
220
|
}
|
234
|
-
fill(
|
235
|
-
return
|
221
|
+
fill(o) {
|
222
|
+
return o === void 0 ? this._fn.fill : (this._fn.fill = o, this);
|
236
223
|
}
|
237
224
|
// Implementation
|
238
|
-
data(
|
239
|
-
return
|
225
|
+
data(o, e) {
|
226
|
+
return o === void 0 ? this._data : (!O(o[0]) && !e && 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 = e ?? ((t) => t), this.options.noRedraw || this.redraw(), this);
|
227
|
+
}
|
228
|
+
accessor() {
|
229
|
+
return this._accessor;
|
240
230
|
}
|
241
231
|
/*
|
242
|
-
* Getter for the event dispatcher
|
232
|
+
* Getter for the D3 event dispatcher
|
243
233
|
*/
|
244
234
|
dispatch() {
|
245
235
|
return this._dispatch;
|
246
236
|
}
|
247
|
-
hoverHandler(
|
248
|
-
return
|
237
|
+
hoverHandler(o) {
|
238
|
+
return o === void 0 ? this._hoverHandler : (this._hoverHandler = o ?? V.none(), this.options.noRedraw || this.redraw(), this);
|
249
239
|
}
|
240
|
+
/**
|
241
|
+
* Get or set the tooltip content and options for the hexbin layer.
|
242
|
+
*/
|
250
243
|
// Cannot overload bindTooltip() with data dependant content
|
251
|
-
tooltip(
|
252
|
-
return this._tooltipOptions =
|
244
|
+
tooltip(o) {
|
245
|
+
return this._tooltipOptions = o, this._tooltip ? this._tooltip.options = o.options ?? {} : this._tooltip = u.tooltip(o.options), this;
|
253
246
|
}
|
247
|
+
/**
|
248
|
+
* Get the tooltip instance attached to the hexbin layer
|
249
|
+
*/
|
254
250
|
getTooltip() {
|
255
251
|
return this._tooltip;
|
256
252
|
}
|
257
|
-
|
258
|
-
|
253
|
+
/**
|
254
|
+
* Bind a tooltip to the hexbin layer with the provided content and options.
|
255
|
+
* Useful to bind an existing tooltip instance to the hexbin layer.
|
256
|
+
*/
|
257
|
+
bindTooltip(o, e) {
|
258
|
+
return o instanceof u.Tooltip ? (this._tooltip = o, this._map && this._tooltip.setLatLng([0, 0]).addTo(this._map)) : this._tooltip = u.tooltip(e).setContent(o), this;
|
259
259
|
}
|
260
|
+
/**
|
261
|
+
* Unbind the tooltip from the hexbin layer
|
262
|
+
*/
|
260
263
|
unbindTooltip() {
|
261
|
-
var
|
262
|
-
return (
|
264
|
+
var o;
|
265
|
+
return (o = this._tooltip) == null || o.remove(), this._tooltip = void 0, this;
|
263
266
|
}
|
264
267
|
/*
|
265
268
|
* Returns an array of the points in the path, or nested arrays of points in case of multi-polyline.
|
266
269
|
*/
|
267
270
|
getLatLngs() {
|
268
|
-
|
269
|
-
return this._data.map(function(i) {
|
270
|
-
return c.latLng(t._fn.lat(i), t._fn.lng(i));
|
271
|
-
});
|
271
|
+
return this._data.map((o) => u.latLng(this._accessor(o)));
|
272
272
|
}
|
273
273
|
/*
|
274
274
|
* Get path geometry as GeoJSON
|
275
275
|
*/
|
276
276
|
toGeoJSON() {
|
277
|
-
return
|
277
|
+
return u.GeoJSON.getFeature(this, {
|
278
278
|
type: "MultiPoint",
|
279
|
-
coordinates:
|
279
|
+
coordinates: u.GeoJSON.latLngsToCoords(this.getLatLngs(), 0)
|
280
280
|
});
|
281
281
|
}
|
282
282
|
}
|
283
|
-
function
|
284
|
-
return new
|
283
|
+
function A(r) {
|
284
|
+
return new C(r);
|
285
285
|
}
|
286
286
|
export {
|
287
287
|
V as HexbinHoverHandler,
|
288
|
-
|
289
|
-
|
288
|
+
C as HexbinLayer,
|
289
|
+
A as hexbinLayer
|
290
290
|
};
|
291
291
|
//# sourceMappingURL=index.es.js.map
|
package/dist/index.es.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.es.js","sources":["../src/HexbinHoverHandler.ts","../src/HexbinLayer.ts"],"sourcesContent":["import * as d3 from 'd3';\nimport type { HexbinData } from './HexbinLayer';\nimport { type HexbinLayer } from './HexbinLayer';\n\nexport interface HexbinHoverHandler<Data> {\n mouseover(svg: SVGPathElement, hexLayer: HexbinLayer<Data>, event: MouseEvent, data: HexbinData<Data>[]): void;\n mouseout(svg: SVGPathElement, hexLayer: HexbinLayer<Data>, event: MouseEvent, data: HexbinData<Data>[]): void;\n}\n\nexport namespace HexbinHoverHandler {\n\n export function resizeFill(): HexbinHoverHandler<any> {\n return {\n mouseover: function (svg: SVGPathElement, hexLayer: HexbinLayer<any>, event: MouseEvent, data: HexbinData<any>[]) {\n const o = d3.select<HTMLElement | null, HexbinData<any>[]>(svg.parentElement);\n o.select('path.hexbin-hexagon')\n .transition().duration(hexLayer.options.duration)\n .attr('d', function (d) {\n return hexLayer._hexLayout.hexagon(hexLayer.options.radius);\n });\n },\n mouseout: function (svg: SVGPathElement, hexLayer: HexbinLayer<any>, event: MouseEvent, data: HexbinData<any>[]) {\n const o = d3.select<HTMLElement | null, HexbinData<any>[]>(svg.parentElement);\n o.select<SVGPathElement>('path.hexbin-hexagon')\n .transition().duration(hexLayer.options.duration)\n .attr('d', function (d) {\n return hexLayer._hexLayout.hexagon(hexLayer._scale.radius(hexLayer._fn.radiusValue.call(hexLayer, d)));\n });\n }\n };\n\n }\n\n export interface ResizeScaleOptions {\n radiusScale?: number;\n duration?: number;\n }\n\n export function resizeScale(radiusScale: number = 1.5): HexbinHoverHandler<any> {\n\n // return the handler instance\n return {\n mouseover: function (svg, hexLayer, event, data) {\n const o = d3.select<HTMLElement | null, HexbinData<any>[]>(svg.parentElement);\n o.select('path.hexbin-hexagon')\n .transition().duration(hexLayer.options.duration)\n .attr('d', function () {\n return hexLayer._hexLayout.hexagon(hexLayer._scale.radius.range()[1] * (radiusScale));\n });\n },\n mouseout: function (svg, hexLayer, event, data) {\n const o = d3.select<HTMLElement | null, HexbinData<any>[]>(svg.parentElement!);\n o.select('path.hexbin-hexagon')\n .transition().duration(hexLayer.options.duration)\n .attr('d', (d) => {\n return hexLayer._hexLayout.hexagon(hexLayer._scale.radius(hexLayer._fn.radiusValue.call(hexLayer, d)));\n });\n }\n };\n }\n\n\n export function compound<Data>(handlers: HexbinHoverHandler<Data>[] = [none()]): HexbinHoverHandler<Data> {\n return {\n mouseover: function (svg, hexLayer, event, data) {\n handlers!.forEach((h) => { h.mouseover(svg, hexLayer, event, data); });\n },\n mouseout: function (svg, hexLayer, event, data) {\n handlers!.forEach((h) => { h.mouseout(svg, hexLayer, event, data); });\n }\n };\n }\n\n export function none(): HexbinHoverHandler<any> {\n return {\n mouseover: function () { },\n mouseout: function () { }\n };\n }\n\n}\nexport default HexbinHoverHandler\n","import { scaleLinear, dispatch, select, extent } from 'd3';\nimport { hexbin, type HexbinBin } from 'd3-hexbin';\nimport * as L from 'leaflet';\nimport HexbinHoverHandler from './HexbinHoverHandler';\n\n// Need to expose some methods from L.SVG\ndeclare module 'leaflet' {\n interface SVG {\n _initContainer(): void;\n _container: SVGElementTagNameMap['svg']\n }\n}\n\ntype TooltipOptions<Data> = {\n options?: L.TooltipOptions,\n content?: L.Content | ((d: HexbinData<Data>[]) => L.Content)\n}\n\nexport interface HexbinLayerConfig {\n /**\n * Hex grid cell radius in pixels.\n * This value should be a positive number.\n * This radius controls the radius of the hexagons used to bin the data\n * but not necessarily to draw each individual hexbin.\n * @default 12\n */\n radius?: number,\n /**\n * Sets the opacity on the hexbin layer.\n * This value should be a number between 0 and 1.\n * If an array is provided, the first element is the minimum opacity and the second is the maximum.\n * @default 0.6\n */\n opacity?: number | [number, number],\n /**\n * Opacity scale extent: [min, max] domain for opacity interpolation.\n * @default [1, undefined]\n */\n opacityScaleExtent?: [number, number | undefined],\n /**\n * Duration of transition in milliseconds.\n * @default 200\n */\n duration?: number,\n\n /**\n * Color scale extent: [min, max] domain for color interpolation.\n * @default [1, undefined]\n */\n colorScaleExtent?: [number, number | undefined],\n /**\n * This is used to override the default behavior, which is to derive the color domain from the data.\n * Normally, you can tweak the generation of the color domain using the colorScaleExtent option.\n * However, if you want to set a completely custom domain, you can provide it as an array of values with this option.\n * The array of values will be passed directly into the domain of the color scale before rendering.\n * @default null\n */\n colorDomain?: number[] | null\n /**\n * Color range used to fill the hexbins.\n * @default ['#f7fbff', '#08306b']\n */\n colorRange?: string[],\n\n /**\n * Radius scale extent: [min, max] domain for radius interpolation.\n * @default [1, undefined]\n */\n radiusScaleExtent?: [number, number | undefined],\n /**\n * This is used to override the default behavior, which is to derive the radius domain from the data.\n * Normally, you can tweak the generation of the radius domain using the radiusScaleExtent option.\n * However, if you want to set a completely custom domain, you can provide it as an array of values with this option.\n * The array of values will be passed directly into the domain of the radius scale before rendering.\n * @default null\n */\n radiusDomain?: number[] | null\n /**\n * Sets the range of the radius scale used to size the hexbins.\n * @default hex grid cell radius\n */\n radiusRange?: [number, number] | null,\n\n /**\n * You should only modify this config option if you want to change the mouse event behavior on hexbins. This will modify when the events are propagated based on the visibility state and/or part of the hexbin being hovered.\n * @default 'all'\n */\n pointerEvents?: string\n}\n\n/**\n * Hexbin data attached to each hexagon, once binned.\n */\nexport type HexbinData<Data> = {\n data: Data;\n coord: L.LatLngExpression;\n point: Readonly<[number, number]>;\n}\n\n\nfunction isLatLngExpression(d: any): d is L.LatLngExpression {\n return (\n d instanceof L.LatLng ||\n (typeof d === 'object' && \"lat\" in d && \"lng\" in d) ||\n (Array.isArray(d) && d.length === 2 && typeof d[0] === 'number' && typeof d[1] === 'number')\n )\n}\n\n/**\n * Instantiate a hexbin layer.\n * Extends L.SVG to take advantage of built-in zoom animations.\n */\nexport class HexbinLayer<Data = L.LatLngExpression> extends L.SVG {\n options: Required<HexbinLayerConfig> & L.RendererOptions = {\n radius: 12,\n opacity: 0.6,\n duration: 200,\n\n colorScaleExtent: [1, undefined],\n radiusScaleExtent: [1, undefined],\n opacityScaleExtent: [1, undefined],\n colorDomain: null,\n radiusDomain: null,\n colorRange: ['#f7fbff', '#08306b'],\n radiusRange: null,\n\n pointerEvents: 'all',\n // Handle parent default options\n // ...L.SVG.prototype.options,\n ...L.Renderer.prototype.options,\n ...L.Layer.prototype.options\n }\n _fn = {\n lng: (d: Data) => L.latLng(this._accessor(d)).lng,\n lat: (d: Data) => L.latLng(this._accessor(d)).lat,\n colorValue: (d: HexbinData<Data>[]) => d.length,\n radiusValue: (d: HexbinData<Data>[]) => d.length,\n opacityValue: (d: HexbinData<Data>[]) => d.length,\n fill: (d: HexbinData<Data>[]) => {\n const val = this._fn.colorValue(d);\n return (null != val) ? this._scale.color(val) : 'none';\n }\n }\n // Set up the customizable scale\n _scale = {\n color: scaleLinear<string, string>(),\n radius: scaleLinear(),\n opacity: scaleLinear()\n };\n\n // Set up the Dispatcher for managing events and callbacks\n _dispatch = dispatch<SVGPathElement>('mouseover', 'mouseout', 'click');\n\n // Set up the default hover handler\n _hoverHandler: HexbinHoverHandler<Data> = HexbinHoverHandler.none();\n\n // Create the hex layout\n _hexLayout = hexbin<HexbinData<Data>>()\n .radius(this.options.radius)\n .x(({ point: [x, _] }) => x)\n .y(({ point: [_, y] }) => y);\n\n // Initialize the data array to be empty\n _data = Array<Data>()\n\n\n declare _map: L.Map;\n\n _tooltipOptions: TooltipOptions<Data> = {};\n declare _tooltip: L.Tooltip | undefined;\n\n declare _container: SVGElementTagNameMap['svg'];\n\n // declare _container: HTMLElement;\n declare _d3Container: d3.Selection<SVGGElement, unknown, null, undefined>;\n\n public constructor(options?: HexbinLayerConfig) {\n super()\n // L.SVG.prototype.initialize.call(this, options);\n this.options = { ...this.options, ...options };\n this._scale.color\n .range(this.options.colorRange)\n .clamp(true);\n\n this._scale.radius\n .range(this.options.radiusRange ?? [this.options.radius, this.options.radius])\n .clamp(true);\n\n this._scale.opacity\n .range(\n typeof this.options.opacity === 'number'\n ? [this.options.opacity, this.options.opacity]\n : this.options.opacity\n ).clamp(true);\n\n };\n\n _accessor(d: Data) {\n return d as L.LatLngExpression;\n }\n\n /**\n * Create the SVG container for the hexbins\n * @private\n */\n _initContainer() {\n super._initContainer();\n this._d3Container = select(this._container).select<SVGElementTagNameMap['g']>('g');\n }\n /**\n * Callback made by Leaflet when the layer is added to the map\n * @param map Reference to the map to which this layer has been added\n */\n onAdd(map: L.Map): this {\n // Call super.onAdd to properly initialize the SVG pane\n super.onAdd(map)\n\n // Store a reference to the map for later use\n this._map = map;\n this._tooltip?.setLatLng([0, 0]).addTo(map);\n // Redraw on moveend\n map.on('moveend', this.redraw, this);\n // Initial draw\n this.redraw();\n return this\n }\n\n _project(latlng: L.LatLngExpression) {\n const { x, y } = this._map.latLngToLayerPoint(latlng);\n return [x, y] as const;\n }\n\n /**\n * Callback made by Leaflet when the layer is removed from the map\n * @param map Reference to the map from which this layer is being removed\n */\n onRemove(map: L.Map): this {\n // Destroy the svg container\n this._destroyContainer();\n // Remove events\n map.off('moveend', this.redraw, this);\n return this\n }\n\n /**\n * Clean up the svg container\n * @private\n */\n _destroyContainer() {\n select(this._container).remove();\n }\n\n /**\n * (Re)draws the hexbins data on the container\n * @private\n */\n redraw() {\n const that = this;\n\n if (!that._map) return\n\n // Generate the mapped version of the data\n const data = that._data.map<HexbinData<Data>>((d: Data) => {\n const coord = that._accessor(d)\n const point = that._project(coord);\n return { coord: coord, point, data: d };\n });\n\n // Select the hex group for the current zoom level. This has\n // the effect of recreating the group if the zoom level has changed\n const join = this._d3Container.selectAll<SVGGElement, number>('g.hexbin')\n .data<number>([this._map.getZoom()], (d) => d);\n\n // enter\n const enter = join.enter().append('g')\n .attr('class', function (d) { return 'hexbin zoom-' + d; });\n\n // enter + update\n const enterUpdate = enter.merge(join);\n\n // exit\n join.exit().remove();\n\n // add the hexagons to the select\n this._createHexagons(enterUpdate, data);\n\n }\n\n _linearlySpace(from: number, to: number, length: number): number[] {\n const step = (to - from) / Math.max(length - 1, 1);\n return Array.from({ length }, (_, i) => from + (i * step));\n }\n\n _createHexagons(g: d3.Selection<SVGGElement, number, SVGGElement, unknown>, data: HexbinData<Data>[]) {\n const thisLayer = this;\n\n // Create the bins using the hexbin layout\n\n // Generate the map bounds (to be used to filter the hexes to what is visible)\n const size = thisLayer._map.getSize();\n const bounds = thisLayer._map.getBounds().pad(thisLayer.options.radius * 2 / Math.max(size.x, size.y));\n\n const bins = thisLayer._hexLayout(data).filter(\n ({ x, y }) => bounds.contains(thisLayer._map.layerPointToLatLng(L.point(x, y)))\n );\n\n // Derive the extents of the data values for each dimension\n const colorExtent = thisLayer._getExtent(bins, thisLayer._fn.colorValue, thisLayer.options.colorScaleExtent);\n const radiusExtent = thisLayer._getExtent(bins, thisLayer._fn.radiusValue, thisLayer.options.radiusScaleExtent);\n const opacityExtent = thisLayer._getExtent(bins, thisLayer._fn.opacityValue, thisLayer.options.opacityScaleExtent);\n\n // Match the domain cardinality to that of the color range, to allow for a polylinear scale\n const colorDomain = this.options.colorDomain\n ?? thisLayer._linearlySpace(\n colorExtent[0],\n colorExtent[1],\n thisLayer._scale.color.range().length\n );\n const radiusDomain = this.options.radiusDomain || radiusExtent;\n\n // Set the scale domains\n thisLayer._scale.color.domain(colorDomain);\n thisLayer._scale.radius.domain(radiusDomain);\n thisLayer._scale.opacity.domain(opacityExtent);\n\n\n /*\n * Join\n * Join the Hexagons to the data\n * Use a deterministic id for tracking bins based on position\n */\n const join = g.selectAll<SVGGElement, HexbinBin<HexbinData<Data>>>('g.hexbin-container')\n .data(bins, ({ x, y }) => `${x}:${y}`);\n\n\n /*\n * Update\n * Set the fill and opacity on a transition\n * opacity is re-applied in case the enter transition was cancelled\n * the path is applied as well to resize the bins\n */\n join.select<SVGPathElement>('path.hexbin-hexagon')\n .transition().duration(thisLayer.options.duration)\n .attr('fill', thisLayer._fn.fill.bind(thisLayer))\n .attr('fill-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('stroke-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('d', (d) => {\n return thisLayer._hexLayout.hexagon(thisLayer._scale.radius(thisLayer._fn.radiusValue.call(thisLayer, d)));\n });\n\n\n /*\n * Enter\n * Establish the path, size, fill, and the initial opacity\n * Transition to the final opacity and size\n */\n const container = join.enter().append('g').attr('class', 'hexbin-container')\n .style('pointer-events', thisLayer.options.pointerEvents);\n\n\n container.on('mouseover', function (this: SVGGElement, d: MouseEvent, i) {\n // Bring container to foreground by re-appending it to the DOM\n select<SVGGElement, HexbinBin<HexbinData<Data>>>(this).raise();\n })\n\n const hexagons = container.append('path').attr('class', 'hexbin-hexagon')\n .attr('transform', ({ x, y }) => `translate(${x},${y})`)\n .attr('d', () => thisLayer._hexLayout.hexagon(thisLayer._scale.radius.range()[0]))\n // .attr('d', (data, length) => thisLayer._hexLayout.hexagon(thisLayer._scale.radius(data.length)))\n .attr('fill', thisLayer._fn.fill.bind(thisLayer))\n .attr('fill-opacity', 0.01)\n .attr('stroke-opacity', 0.01)\n .style('pointer-events', 'all');\n\n hexagons.transition().duration(thisLayer.options.duration)\n .attr('fill-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('stroke-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('d', (d) => thisLayer._hexLayout.hexagon(thisLayer._scale.radius(thisLayer._fn.radiusValue.call(thisLayer, d))))\n .style('pointer-events', 'all');\n\n // Grid\n const gridEnter = container.append('path').attr('class', 'hexbin-grid')\n .attr('transform', ({ x, y }) => `translate(${x},${y})`)\n .attr('d', () => thisLayer._hexLayout.hexagon(thisLayer.options.radius))\n .attr('fill', 'none')\n .attr('stroke', 'none')\n\n\n // Grid enter-update\n hexagons.on('mouseover', function (this: SVGPathElement, ev: MouseEvent, data) {\n if (thisLayer._tooltipOptions?.content) {\n thisLayer._tooltip\n ?.setContent(\n typeof thisLayer._tooltipOptions.content === \"function\"\n ? thisLayer._tooltipOptions.content(data)\n : thisLayer._tooltipOptions.content\n )\n .setLatLng(\n thisLayer._map.layerPointToLatLng(L.point(data.x, data.y))\n )\n .openOn(thisLayer._map);\n }\n thisLayer._hoverHandler.mouseover(this, thisLayer, ev, data);\n thisLayer._dispatch.call('mouseover', this, data, thisLayer, ev);\n this.classList.add('hover')\n })\n .on('mouseout', function (this: SVGPathElement, ev: MouseEvent, data) {\n thisLayer._tooltip?.close()\n thisLayer._hoverHandler.mouseout(this, thisLayer, ev, data);\n thisLayer._dispatch.call('mouseout', this, data, thisLayer, ev);\n this.classList.remove('hover')\n })\n .on('click', function (this, ev: MouseEvent, data) {\n const latLng = thisLayer._map.layerPointToLatLng(L.point(data.x, data.y));\n thisLayer._dispatch.call('click', this, data, latLng, thisLayer, ev);\n ev.stopPropagation()\n });\n\n\n // Exit\n const exit = join.exit();\n\n exit.select('path.hexbin-hexagon')\n .transition().duration(thisLayer.options.duration)\n .attr('fill-opacity', 0)\n .attr('stroke-opacity', 0)\n .attr('d', (d) => thisLayer._hexLayout.hexagon(0));\n\n exit.transition().duration(thisLayer.options.duration).remove();\n\n }\n\n _getExtent(\n bins: HexbinBin<HexbinData<Data>>[],\n valueFn: (d: HexbinBin<HexbinData<Data>>) => number,\n scaleExtent: [number, number | undefined]\n ): [number, number] {\n\n // Determine the extent of the values\n let ext = extent<HexbinBin<HexbinData<Data>>, number>(bins, valueFn.bind(this));\n // If either's null, initialize them to 0\n if (ext[0] === undefined || ext[1] === undefined) {\n ext = [0, 0]\n }\n\n // Now apply the optional clipping of the extent\n if (undefined != scaleExtent[0]) ext[0] = scaleExtent[0];\n if (undefined != scaleExtent[1]) ext[1] = scaleExtent[1];\n\n return ext as [number, number]\n }\n\n // ------------------------------------\n // Public API\n // ------------------------------------\n\n radius(): number;\n radius(v: number): this;\n radius(v?: number): this | number {\n if (v === undefined) return this.options.radius;\n\n this.options.radius = v;\n this._hexLayout.radius(v);\n\n if (null == this.options.radiusRange) {\n this._scale.radius.range([this.options.radius, this.options.radius]).clamp(true);\n }\n\n return this;\n }\n\n opacity(): number | [number, number];\n opacity(v: number | [number, number]): this;\n opacity(v?: number | [number, number]): this | number | [number, number] {\n if (v === undefined) return this.options.opacity\n this.options.opacity = v;\n this._scale.opacity.range(typeof v === 'number' ? [v, v] : v).clamp(true);\n\n return this;\n }\n\n duration(): number;\n duration(v: number): this;\n duration(v?: number): this | number {\n if (v === undefined) return this.options.duration\n this.options.duration = v\n\n return this;\n }\n\n colorScaleExtent(): [number, number | undefined];\n colorScaleExtent(v: [number, number | undefined]): this;\n colorScaleExtent(v?: [number, number | undefined]): this | [number, number | undefined] {\n if (v === undefined) { return this.options.colorScaleExtent; }\n this.options.colorScaleExtent = v;\n\n return this;\n }\n\n radiusScaleExtent(): [number, number | undefined];\n radiusScaleExtent(v: [number, number | undefined]): this;\n radiusScaleExtent(v?: [number, number | undefined]): this | [number, number | undefined] {\n if (v === undefined) { return this.options.radiusScaleExtent; }\n this.options.radiusScaleExtent = v;\n\n return this;\n }\n\n opacityScaleExtent(): [number, number | undefined];\n opacityScaleExtent(v: [number, number | undefined]): this;\n opacityScaleExtent(v?: [number, number | undefined]): this | [number, number | undefined] {\n if (v === undefined) { return this.options.opacityScaleExtent; }\n this.options.opacityScaleExtent = v;\n\n return this;\n }\n\n\n colorRange(): string[];\n colorRange(v: string[]): this;\n colorRange(v?: string[]): this | string[] {\n if (v === undefined) { return this.options.colorRange; }\n this.options.colorRange = v;\n this._scale.color.range(v);\n\n return this;\n }\n\n radiusRange(): [number, number] | null;\n radiusRange(v: [number, number] | null): this;\n radiusRange(v?: [number, number] | null): this | [number, number] | null {\n if (v === undefined) { return this.options.radiusRange; }\n this.options.radiusRange = v;\n this._scale.radius.range(this.options.radiusRange ?? [this.options.radius, this.options.radius]).clamp(true);\n\n return this;\n }\n\n colorScale(): d3.ScaleLinear<string, string>;\n colorScale(v: d3.ScaleLinear<string, string>): this;\n colorScale(v?: d3.ScaleLinear<string, string>) {\n if (v === undefined) return this._scale.color;\n this._scale.color = v;\n return this;\n }\n\n radiusScale(): d3.ScaleLinear<number, number>;\n radiusScale(v: d3.ScaleLinear<number, number>): this;\n radiusScale(v?: d3.ScaleLinear<number, number>): this | d3.ScaleLinear<number, number> {\n if (v === undefined) return this._scale.radius\n this._scale.radius = v;\n return this;\n }\n\n lng(): (d: Data) => number;\n lng(v: (d: Data) => number): this;\n lng(v?: (d: Data) => number) {\n if (v === undefined) { return this._fn.lng; }\n this._fn.lng = v;\n\n return this;\n }\n\n lat(): (d: Data) => number;\n lat(v: (d: Data) => number): this;\n lat(v?: (d: Data) => number) {\n if (v === undefined) { return this._fn.lat; }\n this._fn.lat = v;\n\n return this;\n }\n\n colorValue(): (d: HexbinData<Data>[]) => number;\n colorValue(v: (d: HexbinData<Data>[]) => number): this;\n colorValue(v?: (d: HexbinData<Data>[]) => number) {\n if (v === undefined) { return this._fn.colorValue; }\n this._fn.colorValue = v;\n\n return this;\n }\n\n radiusValue(): (d: HexbinData<Data>[]) => number;\n radiusValue(v: (d: HexbinData<Data>[]) => number): this;\n radiusValue(v?: (d: HexbinData<Data>[]) => number) {\n if (v === undefined) { return this._fn.radiusValue; }\n this._fn.radiusValue = v;\n\n return this;\n }\n\n fill(): (d: HexbinData<Data>[]) => string;\n fill(v: (d: HexbinData<Data>[]) => string): this;\n fill(v?: (d: HexbinData<Data>[]) => string) {\n if (v === undefined) { return this._fn.fill; }\n this._fn.fill = v;\n\n return this;\n }\n\n data(): Data[];\n data(v: Data extends L.LatLngExpression ? Data[] : never): this;\n data(v: Data[], accessor?: (d: Data) => L.LatLngExpression): this;\n\n // Implementation\n data(v?: Data[] | L.LatLngExpression[], accessor?: (d: Data) => L.LatLngExpression): this | Data[] {\n if (v === undefined) {\n return this._data;\n }\n\n if (!isLatLngExpression(v[0]) && !accessor) {\n console.error(\"Leaflet hexbin: data does not appear to be an array of L.LatLngExpression. You must provide an accessor function to convert the data to L.LatLngExpression\");\n }\n\n this._data = v as Data[] ?? []\n this._accessor = accessor ?? ((d: Data) => d as L.LatLngExpression)\n\n this.redraw();\n return this;\n }\n\n /*\n * Getter for the event dispatcher\n */\n dispatch() { return this._dispatch }\n\n hoverHandler(): HexbinHoverHandler<Data>;\n hoverHandler(v: HexbinHoverHandler<Data>): this;\n hoverHandler(v?: HexbinHoverHandler<Data>): this | HexbinHoverHandler<Data> {\n if (v === undefined) { return this._hoverHandler; }\n this._hoverHandler = (null != v) ? v : HexbinHoverHandler.none();\n\n this.redraw();\n\n return this;\n }\n\n // Cannot overload bindTooltip() with data dependant content\n tooltip(tooltip: TooltipOptions<Data>): this {\n this._tooltipOptions = tooltip;\n if (this._tooltip)\n this._tooltip.options = tooltip.options ?? {};\n else {\n this._tooltip = L.tooltip(tooltip.options)\n }\n return this\n }\n\n getTooltip(): L.Tooltip | undefined {\n return this._tooltip\n }\n\n bindTooltip(content: L.Tooltip | L.Content, options?: L.TooltipOptions): this {\n if (content instanceof L.Tooltip) {\n this._tooltip = content;\n // FIXME: weird bug likely coming from vue-leaflet were tooltip is not properly positioned\n // this._tooltip.options.offset[0] -= 5;\n if (this._map) {\n this._tooltip.setLatLng([0, 0]).addTo(this._map)\n }\n } else {\n this._tooltip = L.tooltip(options).setContent(content);\n }\n return this\n }\n\n unbindTooltip(): this {\n this._tooltip?.remove();\n this._tooltip = undefined;\n return this\n }\n\n /*\n * Returns an array of the points in the path, or nested arrays of points in case of multi-polyline.\n */\n getLatLngs() {\n const that = this;\n\n // Map the data into an array of latLngs using the configured lat/lng accessors\n return this._data.map(function (d) {\n return L.latLng(that._fn.lat(d), that._fn.lng(d));\n });\n }\n /*\n * Get path geometry as GeoJSON\n */\n toGeoJSON(): GeoJSON.Feature<GeoJSON.MultiPoint, L.LatLng> {\n return L.GeoJSON.getFeature<L.LatLng, GeoJSON.MultiPoint>(this, {\n type: 'MultiPoint',\n coordinates: L.GeoJSON.latLngsToCoords(this.getLatLngs(), 0)\n });\n }\n}\n\n/**\n * Factory function to instanciate a new hexbin layer\n */\nexport function hexbinLayer<Data = L.LatLngExpression>(options?: HexbinLayerConfig) {\n return new HexbinLayer<Data>(options);\n}\n\n\n"],"names":["HexbinHoverHandler","resizeFill","svg","hexLayer","event","data","d3","d","resizeScale","radiusScale","compound","handlers","none","HexbinHoverHandler$1","isLatLngExpression","L","HexbinLayer","options","val","scaleLinear","dispatch","hexbin","x","_","y","select","map","_a","latlng","that","coord","point","join","enterUpdate","from","to","length","step","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 on hover.\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\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', this.redraw, this);\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(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","HexbinLayer","options","val","scaleLinear","dispatch","hexbin","x","y","select","map","_a","that","coord","point","join","enterUpdate","from","to","length","step","_","g","thisLayer","size","bounds","bins","colorExtent","radiusExtent","opacityExtent","colorDomain","radiusDomain","container","i","hexagons","ev","_b","latLng","exit","valueFn","scaleExtent","ext","extent","v","accessor","tooltip","content","hexbinLayer"],"mappings":"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"}
|
package/dist/index.umd.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
(function(h,
|
1
|
+
(function(h,c){typeof exports=="object"&&typeof module<"u"?c(exports,require("d3"),require("d3-hexbin"),require("leaflet")):typeof define=="function"&&define.amd?define(["exports","d3","d3-hexbin","leaflet"],c):(h=typeof globalThis<"u"?globalThis:h||self,c(h["leaflet-hexbin"]={},h.d3,h["d3-hexbin"],h.L))})(this,function(h,c,T,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 y=S(c),u=S(w);var m;(s=>{function t(){return{mouseover:function(p,e,r,d){y.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){y.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,_){y.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,_){y.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})(m||(m={}));const x=m;function H(s){return s instanceof u.LatLng||typeof s=="object"&&"lat"in s&&"lng"in s||Array.isArray(s)&&s.length===2&&typeof s[0]=="number"&&typeof s[1]=="number"}class E extends u.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,...u.Renderer.prototype.options,...u.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:c.scaleLinear(),radius:c.scaleLinear(),opacity:c.scaleLinear()},this._dispatch=c.dispatch("mouseover","mouseout","click"),this._hoverHandler=x.none(),this._hexLayout=T.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=c.select(this._container).select("g")}onAdd(t){var i;return super.onAdd(t),this._map=t,(i=this._tooltip)==null||i.setLatLng([0,0]).addTo(t),t.on("moveend",this.redraw,this),this.redraw(),this}onRemove(t){return this._destroyContainer(),t.off("moveend",this.redraw,this),this}_destroyContainer(){c.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(i).filter(({x:n,y:a})=>p.contains(o._map.layerPointToLatLng(u.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){c.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,O;(g=o._tooltipOptions)!=null&&g.content&&((O=o._tooltip)==null||O.setContent(typeof o._tooltipOptions.content=="function"?o._tooltipOptions.content(a):o._tooltipOptions.content).setLatLng(o._map.layerPointToLatLng(u.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(u.point(a.x,a.y));o._dispatch.call("click",this,a,g,o,n),n.stopPropagation()});const R=b.exit();R.select("path.hexbin-hexagon").transition().duration(o.options.duration).attr("fill-opacity",0).attr("stroke-opacity",0).attr("d",n=>o._hexLayout.hexagon(0)),R.transition().duration(o.options.duration).remove()}_getExtent(t,i,o){let l=c.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=u.tooltip(t.options),this}getTooltip(){return this._tooltip}bindTooltip(t,i){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}unbindTooltip(){var t;return(t=this._tooltip)==null||t.remove(),this._tooltip=void 0,this}getLatLngs(){return this._data.map(t=>u.latLng(this._accessor(t)))}toGeoJSON(){return u.GeoJSON.getFeature(this,{type:"MultiPoint",coordinates:u.GeoJSON.latLngsToCoords(this.getLatLngs(),0)})}}function j(s){return new E(s)}h.HexbinHoverHandler=x,h.HexbinLayer=E,h.hexbinLayer=j,Object.defineProperty(h,Symbol.toStringTag,{value:"Module"})});
|
2
2
|
//# sourceMappingURL=index.umd.js.map
|
package/dist/index.umd.js.map
CHANGED
@@ -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\nexport interface HexbinHoverHandler<Data> {\n mouseover(svg: SVGPathElement, hexLayer: HexbinLayer<Data>, event: MouseEvent, data: HexbinData<Data>[]): void;\n mouseout(svg: SVGPathElement, hexLayer: HexbinLayer<Data>, event: MouseEvent, data: HexbinData<Data>[]): void;\n}\n\nexport namespace HexbinHoverHandler {\n\n export function resizeFill(): HexbinHoverHandler<any> {\n return {\n mouseover: function (svg: SVGPathElement, hexLayer: HexbinLayer<any>, event: MouseEvent, data: HexbinData<any>[]) {\n const o = d3.select<HTMLElement | null, HexbinData<any>[]>(svg.parentElement);\n o.select('path.hexbin-hexagon')\n .transition().duration(hexLayer.options.duration)\n .attr('d', function (d) {\n return hexLayer._hexLayout.hexagon(hexLayer.options.radius);\n });\n },\n mouseout: function (svg: SVGPathElement, hexLayer: HexbinLayer<any>, event: MouseEvent, data: HexbinData<any>[]) {\n const o = d3.select<HTMLElement | null, HexbinData<any>[]>(svg.parentElement);\n o.select<SVGPathElement>('path.hexbin-hexagon')\n .transition().duration(hexLayer.options.duration)\n .attr('d', function (d) {\n return hexLayer._hexLayout.hexagon(hexLayer._scale.radius(hexLayer._fn.radiusValue.call(hexLayer, d)));\n });\n }\n };\n\n }\n\n export interface ResizeScaleOptions {\n radiusScale?: number;\n duration?: number;\n }\n\n export function resizeScale(radiusScale: number = 1.5): HexbinHoverHandler<any> {\n\n // return the handler instance\n return {\n mouseover: function (svg, hexLayer, event, data) {\n const o = d3.select<HTMLElement | null, HexbinData<any>[]>(svg.parentElement);\n o.select('path.hexbin-hexagon')\n .transition().duration(hexLayer.options.duration)\n .attr('d', function () {\n return hexLayer._hexLayout.hexagon(hexLayer._scale.radius.range()[1] * (radiusScale));\n });\n },\n mouseout: function (svg, hexLayer, event, data) {\n const o = d3.select<HTMLElement | null, HexbinData<any>[]>(svg.parentElement!);\n o.select('path.hexbin-hexagon')\n .transition().duration(hexLayer.options.duration)\n .attr('d', (d) => {\n return hexLayer._hexLayout.hexagon(hexLayer._scale.radius(hexLayer._fn.radiusValue.call(hexLayer, d)));\n });\n }\n };\n }\n\n\n export function compound<Data>(handlers: HexbinHoverHandler<Data>[] = [none()]): HexbinHoverHandler<Data> {\n return {\n mouseover: function (svg, hexLayer, event, data) {\n handlers!.forEach((h) => { h.mouseover(svg, hexLayer, event, data); });\n },\n mouseout: function (svg, hexLayer, event, data) {\n handlers!.forEach((h) => { h.mouseout(svg, hexLayer, event, data); });\n }\n };\n }\n\n export function none(): HexbinHoverHandler<any> {\n return {\n mouseover: function () { },\n mouseout: function () { }\n };\n }\n\n}\nexport default HexbinHoverHandler\n","import { scaleLinear, dispatch, select, extent } from 'd3';\nimport { hexbin, type HexbinBin } from 'd3-hexbin';\nimport * as L from 'leaflet';\nimport HexbinHoverHandler from './HexbinHoverHandler';\n\n// Need to expose some methods from L.SVG\ndeclare module 'leaflet' {\n interface SVG {\n _initContainer(): void;\n _container: SVGElementTagNameMap['svg']\n }\n}\n\ntype TooltipOptions<Data> = {\n options?: L.TooltipOptions,\n content?: L.Content | ((d: HexbinData<Data>[]) => L.Content)\n}\n\nexport interface HexbinLayerConfig {\n /**\n * Hex grid cell radius in pixels.\n * This value should be a positive number.\n * This radius controls the radius of the hexagons used to bin the data\n * but not necessarily to draw each individual hexbin.\n * @default 12\n */\n radius?: number,\n /**\n * Sets the opacity on the hexbin layer.\n * This value should be a number between 0 and 1.\n * If an array is provided, the first element is the minimum opacity and the second is the maximum.\n * @default 0.6\n */\n opacity?: number | [number, number],\n /**\n * Opacity scale extent: [min, max] domain for opacity interpolation.\n * @default [1, undefined]\n */\n opacityScaleExtent?: [number, number | undefined],\n /**\n * Duration of transition in milliseconds.\n * @default 200\n */\n duration?: number,\n\n /**\n * Color scale extent: [min, max] domain for color interpolation.\n * @default [1, undefined]\n */\n colorScaleExtent?: [number, number | undefined],\n /**\n * This is used to override the default behavior, which is to derive the color domain from the data.\n * Normally, you can tweak the generation of the color domain using the colorScaleExtent option.\n * However, if you want to set a completely custom domain, you can provide it as an array of values with this option.\n * The array of values will be passed directly into the domain of the color scale before rendering.\n * @default null\n */\n colorDomain?: number[] | null\n /**\n * Color range used to fill the hexbins.\n * @default ['#f7fbff', '#08306b']\n */\n colorRange?: string[],\n\n /**\n * Radius scale extent: [min, max] domain for radius interpolation.\n * @default [1, undefined]\n */\n radiusScaleExtent?: [number, number | undefined],\n /**\n * This is used to override the default behavior, which is to derive the radius domain from the data.\n * Normally, you can tweak the generation of the radius domain using the radiusScaleExtent option.\n * However, if you want to set a completely custom domain, you can provide it as an array of values with this option.\n * The array of values will be passed directly into the domain of the radius scale before rendering.\n * @default null\n */\n radiusDomain?: number[] | null\n /**\n * Sets the range of the radius scale used to size the hexbins.\n * @default hex grid cell radius\n */\n radiusRange?: [number, number] | null,\n\n /**\n * You should only modify this config option if you want to change the mouse event behavior on hexbins. This will modify when the events are propagated based on the visibility state and/or part of the hexbin being hovered.\n * @default 'all'\n */\n pointerEvents?: string\n}\n\n/**\n * Hexbin data attached to each hexagon, once binned.\n */\nexport type HexbinData<Data> = {\n data: Data;\n coord: L.LatLngExpression;\n point: Readonly<[number, number]>;\n}\n\n\nfunction isLatLngExpression(d: any): d is L.LatLngExpression {\n return (\n d instanceof L.LatLng ||\n (typeof d === 'object' && \"lat\" in d && \"lng\" in d) ||\n (Array.isArray(d) && d.length === 2 && typeof d[0] === 'number' && typeof d[1] === 'number')\n )\n}\n\n/**\n * Instantiate a hexbin layer.\n * Extends L.SVG to take advantage of built-in zoom animations.\n */\nexport class HexbinLayer<Data = L.LatLngExpression> extends L.SVG {\n options: Required<HexbinLayerConfig> & L.RendererOptions = {\n radius: 12,\n opacity: 0.6,\n duration: 200,\n\n colorScaleExtent: [1, undefined],\n radiusScaleExtent: [1, undefined],\n opacityScaleExtent: [1, undefined],\n colorDomain: null,\n radiusDomain: null,\n colorRange: ['#f7fbff', '#08306b'],\n radiusRange: null,\n\n pointerEvents: 'all',\n // Handle parent default options\n // ...L.SVG.prototype.options,\n ...L.Renderer.prototype.options,\n ...L.Layer.prototype.options\n }\n _fn = {\n lng: (d: Data) => L.latLng(this._accessor(d)).lng,\n lat: (d: Data) => L.latLng(this._accessor(d)).lat,\n colorValue: (d: HexbinData<Data>[]) => d.length,\n radiusValue: (d: HexbinData<Data>[]) => d.length,\n opacityValue: (d: HexbinData<Data>[]) => d.length,\n fill: (d: HexbinData<Data>[]) => {\n const val = this._fn.colorValue(d);\n return (null != val) ? this._scale.color(val) : 'none';\n }\n }\n // Set up the customizable scale\n _scale = {\n color: scaleLinear<string, string>(),\n radius: scaleLinear(),\n opacity: scaleLinear()\n };\n\n // Set up the Dispatcher for managing events and callbacks\n _dispatch = dispatch<SVGPathElement>('mouseover', 'mouseout', 'click');\n\n // Set up the default hover handler\n _hoverHandler: HexbinHoverHandler<Data> = HexbinHoverHandler.none();\n\n // Create the hex layout\n _hexLayout = hexbin<HexbinData<Data>>()\n .radius(this.options.radius)\n .x(({ point: [x, _] }) => x)\n .y(({ point: [_, y] }) => y);\n\n // Initialize the data array to be empty\n _data = Array<Data>()\n\n\n declare _map: L.Map;\n\n _tooltipOptions: TooltipOptions<Data> = {};\n declare _tooltip: L.Tooltip | undefined;\n\n declare _container: SVGElementTagNameMap['svg'];\n\n // declare _container: HTMLElement;\n declare _d3Container: d3.Selection<SVGGElement, unknown, null, undefined>;\n\n public constructor(options?: HexbinLayerConfig) {\n super()\n // L.SVG.prototype.initialize.call(this, options);\n this.options = { ...this.options, ...options };\n this._scale.color\n .range(this.options.colorRange)\n .clamp(true);\n\n this._scale.radius\n .range(this.options.radiusRange ?? [this.options.radius, this.options.radius])\n .clamp(true);\n\n this._scale.opacity\n .range(\n typeof this.options.opacity === 'number'\n ? [this.options.opacity, this.options.opacity]\n : this.options.opacity\n ).clamp(true);\n\n };\n\n _accessor(d: Data) {\n return d as L.LatLngExpression;\n }\n\n /**\n * Create the SVG container for the hexbins\n * @private\n */\n _initContainer() {\n super._initContainer();\n this._d3Container = select(this._container).select<SVGElementTagNameMap['g']>('g');\n }\n /**\n * Callback made by Leaflet when the layer is added to the map\n * @param map Reference to the map to which this layer has been added\n */\n onAdd(map: L.Map): this {\n // Call super.onAdd to properly initialize the SVG pane\n super.onAdd(map)\n\n // Store a reference to the map for later use\n this._map = map;\n this._tooltip?.setLatLng([0, 0]).addTo(map);\n // Redraw on moveend\n map.on('moveend', this.redraw, this);\n // Initial draw\n this.redraw();\n return this\n }\n\n _project(latlng: L.LatLngExpression) {\n const { x, y } = this._map.latLngToLayerPoint(latlng);\n return [x, y] as const;\n }\n\n /**\n * Callback made by Leaflet when the layer is removed from the map\n * @param map Reference to the map from which this layer is being removed\n */\n onRemove(map: L.Map): this {\n // Destroy the svg container\n this._destroyContainer();\n // Remove events\n map.off('moveend', this.redraw, this);\n return this\n }\n\n /**\n * Clean up the svg container\n * @private\n */\n _destroyContainer() {\n select(this._container).remove();\n }\n\n /**\n * (Re)draws the hexbins data on the container\n * @private\n */\n redraw() {\n const that = this;\n\n if (!that._map) return\n\n // Generate the mapped version of the data\n const data = that._data.map<HexbinData<Data>>((d: Data) => {\n const coord = that._accessor(d)\n const point = that._project(coord);\n return { coord: coord, point, data: d };\n });\n\n // Select the hex group for the current zoom level. This has\n // the effect of recreating the group if the zoom level has changed\n const join = this._d3Container.selectAll<SVGGElement, number>('g.hexbin')\n .data<number>([this._map.getZoom()], (d) => d);\n\n // enter\n const enter = join.enter().append('g')\n .attr('class', function (d) { return 'hexbin zoom-' + d; });\n\n // enter + update\n const enterUpdate = enter.merge(join);\n\n // exit\n join.exit().remove();\n\n // add the hexagons to the select\n this._createHexagons(enterUpdate, data);\n\n }\n\n _linearlySpace(from: number, to: number, length: number): number[] {\n const step = (to - from) / Math.max(length - 1, 1);\n return Array.from({ length }, (_, i) => from + (i * step));\n }\n\n _createHexagons(g: d3.Selection<SVGGElement, number, SVGGElement, unknown>, data: HexbinData<Data>[]) {\n const thisLayer = this;\n\n // Create the bins using the hexbin layout\n\n // Generate the map bounds (to be used to filter the hexes to what is visible)\n const size = thisLayer._map.getSize();\n const bounds = thisLayer._map.getBounds().pad(thisLayer.options.radius * 2 / Math.max(size.x, size.y));\n\n const bins = thisLayer._hexLayout(data).filter(\n ({ x, y }) => bounds.contains(thisLayer._map.layerPointToLatLng(L.point(x, y)))\n );\n\n // Derive the extents of the data values for each dimension\n const colorExtent = thisLayer._getExtent(bins, thisLayer._fn.colorValue, thisLayer.options.colorScaleExtent);\n const radiusExtent = thisLayer._getExtent(bins, thisLayer._fn.radiusValue, thisLayer.options.radiusScaleExtent);\n const opacityExtent = thisLayer._getExtent(bins, thisLayer._fn.opacityValue, thisLayer.options.opacityScaleExtent);\n\n // Match the domain cardinality to that of the color range, to allow for a polylinear scale\n const colorDomain = this.options.colorDomain\n ?? thisLayer._linearlySpace(\n colorExtent[0],\n colorExtent[1],\n thisLayer._scale.color.range().length\n );\n const radiusDomain = this.options.radiusDomain || radiusExtent;\n\n // Set the scale domains\n thisLayer._scale.color.domain(colorDomain);\n thisLayer._scale.radius.domain(radiusDomain);\n thisLayer._scale.opacity.domain(opacityExtent);\n\n\n /*\n * Join\n * Join the Hexagons to the data\n * Use a deterministic id for tracking bins based on position\n */\n const join = g.selectAll<SVGGElement, HexbinBin<HexbinData<Data>>>('g.hexbin-container')\n .data(bins, ({ x, y }) => `${x}:${y}`);\n\n\n /*\n * Update\n * Set the fill and opacity on a transition\n * opacity is re-applied in case the enter transition was cancelled\n * the path is applied as well to resize the bins\n */\n join.select<SVGPathElement>('path.hexbin-hexagon')\n .transition().duration(thisLayer.options.duration)\n .attr('fill', thisLayer._fn.fill.bind(thisLayer))\n .attr('fill-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('stroke-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('d', (d) => {\n return thisLayer._hexLayout.hexagon(thisLayer._scale.radius(thisLayer._fn.radiusValue.call(thisLayer, d)));\n });\n\n\n /*\n * Enter\n * Establish the path, size, fill, and the initial opacity\n * Transition to the final opacity and size\n */\n const container = join.enter().append('g').attr('class', 'hexbin-container')\n .style('pointer-events', thisLayer.options.pointerEvents);\n\n\n container.on('mouseover', function (this: SVGGElement, d: MouseEvent, i) {\n // Bring container to foreground by re-appending it to the DOM\n select<SVGGElement, HexbinBin<HexbinData<Data>>>(this).raise();\n })\n\n const hexagons = container.append('path').attr('class', 'hexbin-hexagon')\n .attr('transform', ({ x, y }) => `translate(${x},${y})`)\n .attr('d', () => thisLayer._hexLayout.hexagon(thisLayer._scale.radius.range()[0]))\n // .attr('d', (data, length) => thisLayer._hexLayout.hexagon(thisLayer._scale.radius(data.length)))\n .attr('fill', thisLayer._fn.fill.bind(thisLayer))\n .attr('fill-opacity', 0.01)\n .attr('stroke-opacity', 0.01)\n .style('pointer-events', 'all');\n\n hexagons.transition().duration(thisLayer.options.duration)\n .attr('fill-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('stroke-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('d', (d) => thisLayer._hexLayout.hexagon(thisLayer._scale.radius(thisLayer._fn.radiusValue.call(thisLayer, d))))\n .style('pointer-events', 'all');\n\n // Grid\n const gridEnter = container.append('path').attr('class', 'hexbin-grid')\n .attr('transform', ({ x, y }) => `translate(${x},${y})`)\n .attr('d', () => thisLayer._hexLayout.hexagon(thisLayer.options.radius))\n .attr('fill', 'none')\n .attr('stroke', 'none')\n\n\n // Grid enter-update\n hexagons.on('mouseover', function (this: SVGPathElement, ev: MouseEvent, data) {\n if (thisLayer._tooltipOptions?.content) {\n thisLayer._tooltip\n ?.setContent(\n typeof thisLayer._tooltipOptions.content === \"function\"\n ? thisLayer._tooltipOptions.content(data)\n : thisLayer._tooltipOptions.content\n )\n .setLatLng(\n thisLayer._map.layerPointToLatLng(L.point(data.x, data.y))\n )\n .openOn(thisLayer._map);\n }\n thisLayer._hoverHandler.mouseover(this, thisLayer, ev, data);\n thisLayer._dispatch.call('mouseover', this, data, thisLayer, ev);\n this.classList.add('hover')\n })\n .on('mouseout', function (this: SVGPathElement, ev: MouseEvent, data) {\n thisLayer._tooltip?.close()\n thisLayer._hoverHandler.mouseout(this, thisLayer, ev, data);\n thisLayer._dispatch.call('mouseout', this, data, thisLayer, ev);\n this.classList.remove('hover')\n })\n .on('click', function (this, ev: MouseEvent, data) {\n const latLng = thisLayer._map.layerPointToLatLng(L.point(data.x, data.y));\n thisLayer._dispatch.call('click', this, data, latLng, thisLayer, ev);\n ev.stopPropagation()\n });\n\n\n // Exit\n const exit = join.exit();\n\n exit.select('path.hexbin-hexagon')\n .transition().duration(thisLayer.options.duration)\n .attr('fill-opacity', 0)\n .attr('stroke-opacity', 0)\n .attr('d', (d) => thisLayer._hexLayout.hexagon(0));\n\n exit.transition().duration(thisLayer.options.duration).remove();\n\n }\n\n _getExtent(\n bins: HexbinBin<HexbinData<Data>>[],\n valueFn: (d: HexbinBin<HexbinData<Data>>) => number,\n scaleExtent: [number, number | undefined]\n ): [number, number] {\n\n // Determine the extent of the values\n let ext = extent<HexbinBin<HexbinData<Data>>, number>(bins, valueFn.bind(this));\n // If either's null, initialize them to 0\n if (ext[0] === undefined || ext[1] === undefined) {\n ext = [0, 0]\n }\n\n // Now apply the optional clipping of the extent\n if (undefined != scaleExtent[0]) ext[0] = scaleExtent[0];\n if (undefined != scaleExtent[1]) ext[1] = scaleExtent[1];\n\n return ext as [number, number]\n }\n\n // ------------------------------------\n // Public API\n // ------------------------------------\n\n radius(): number;\n radius(v: number): this;\n radius(v?: number): this | number {\n if (v === undefined) return this.options.radius;\n\n this.options.radius = v;\n this._hexLayout.radius(v);\n\n if (null == this.options.radiusRange) {\n this._scale.radius.range([this.options.radius, this.options.radius]).clamp(true);\n }\n\n return this;\n }\n\n opacity(): number | [number, number];\n opacity(v: number | [number, number]): this;\n opacity(v?: number | [number, number]): this | number | [number, number] {\n if (v === undefined) return this.options.opacity\n this.options.opacity = v;\n this._scale.opacity.range(typeof v === 'number' ? [v, v] : v).clamp(true);\n\n return this;\n }\n\n duration(): number;\n duration(v: number): this;\n duration(v?: number): this | number {\n if (v === undefined) return this.options.duration\n this.options.duration = v\n\n return this;\n }\n\n colorScaleExtent(): [number, number | undefined];\n colorScaleExtent(v: [number, number | undefined]): this;\n colorScaleExtent(v?: [number, number | undefined]): this | [number, number | undefined] {\n if (v === undefined) { return this.options.colorScaleExtent; }\n this.options.colorScaleExtent = v;\n\n return this;\n }\n\n radiusScaleExtent(): [number, number | undefined];\n radiusScaleExtent(v: [number, number | undefined]): this;\n radiusScaleExtent(v?: [number, number | undefined]): this | [number, number | undefined] {\n if (v === undefined) { return this.options.radiusScaleExtent; }\n this.options.radiusScaleExtent = v;\n\n return this;\n }\n\n opacityScaleExtent(): [number, number | undefined];\n opacityScaleExtent(v: [number, number | undefined]): this;\n opacityScaleExtent(v?: [number, number | undefined]): this | [number, number | undefined] {\n if (v === undefined) { return this.options.opacityScaleExtent; }\n this.options.opacityScaleExtent = v;\n\n return this;\n }\n\n\n colorRange(): string[];\n colorRange(v: string[]): this;\n colorRange(v?: string[]): this | string[] {\n if (v === undefined) { return this.options.colorRange; }\n this.options.colorRange = v;\n this._scale.color.range(v);\n\n return this;\n }\n\n radiusRange(): [number, number] | null;\n radiusRange(v: [number, number] | null): this;\n radiusRange(v?: [number, number] | null): this | [number, number] | null {\n if (v === undefined) { return this.options.radiusRange; }\n this.options.radiusRange = v;\n this._scale.radius.range(this.options.radiusRange ?? [this.options.radius, this.options.radius]).clamp(true);\n\n return this;\n }\n\n colorScale(): d3.ScaleLinear<string, string>;\n colorScale(v: d3.ScaleLinear<string, string>): this;\n colorScale(v?: d3.ScaleLinear<string, string>) {\n if (v === undefined) return this._scale.color;\n this._scale.color = v;\n return this;\n }\n\n radiusScale(): d3.ScaleLinear<number, number>;\n radiusScale(v: d3.ScaleLinear<number, number>): this;\n radiusScale(v?: d3.ScaleLinear<number, number>): this | d3.ScaleLinear<number, number> {\n if (v === undefined) return this._scale.radius\n this._scale.radius = v;\n return this;\n }\n\n lng(): (d: Data) => number;\n lng(v: (d: Data) => number): this;\n lng(v?: (d: Data) => number) {\n if (v === undefined) { return this._fn.lng; }\n this._fn.lng = v;\n\n return this;\n }\n\n lat(): (d: Data) => number;\n lat(v: (d: Data) => number): this;\n lat(v?: (d: Data) => number) {\n if (v === undefined) { return this._fn.lat; }\n this._fn.lat = v;\n\n return this;\n }\n\n colorValue(): (d: HexbinData<Data>[]) => number;\n colorValue(v: (d: HexbinData<Data>[]) => number): this;\n colorValue(v?: (d: HexbinData<Data>[]) => number) {\n if (v === undefined) { return this._fn.colorValue; }\n this._fn.colorValue = v;\n\n return this;\n }\n\n radiusValue(): (d: HexbinData<Data>[]) => number;\n radiusValue(v: (d: HexbinData<Data>[]) => number): this;\n radiusValue(v?: (d: HexbinData<Data>[]) => number) {\n if (v === undefined) { return this._fn.radiusValue; }\n this._fn.radiusValue = v;\n\n return this;\n }\n\n fill(): (d: HexbinData<Data>[]) => string;\n fill(v: (d: HexbinData<Data>[]) => string): this;\n fill(v?: (d: HexbinData<Data>[]) => string) {\n if (v === undefined) { return this._fn.fill; }\n this._fn.fill = v;\n\n return this;\n }\n\n data(): Data[];\n data(v: Data extends L.LatLngExpression ? Data[] : never): this;\n data(v: Data[], accessor?: (d: Data) => L.LatLngExpression): this;\n\n // Implementation\n data(v?: Data[] | L.LatLngExpression[], accessor?: (d: Data) => L.LatLngExpression): this | Data[] {\n if (v === undefined) {\n return this._data;\n }\n\n if (!isLatLngExpression(v[0]) && !accessor) {\n console.error(\"Leaflet hexbin: data does not appear to be an array of L.LatLngExpression. You must provide an accessor function to convert the data to L.LatLngExpression\");\n }\n\n this._data = v as Data[] ?? []\n this._accessor = accessor ?? ((d: Data) => d as L.LatLngExpression)\n\n this.redraw();\n return this;\n }\n\n /*\n * Getter for the event dispatcher\n */\n dispatch() { return this._dispatch }\n\n hoverHandler(): HexbinHoverHandler<Data>;\n hoverHandler(v: HexbinHoverHandler<Data>): this;\n hoverHandler(v?: HexbinHoverHandler<Data>): this | HexbinHoverHandler<Data> {\n if (v === undefined) { return this._hoverHandler; }\n this._hoverHandler = (null != v) ? v : HexbinHoverHandler.none();\n\n this.redraw();\n\n return this;\n }\n\n // Cannot overload bindTooltip() with data dependant content\n tooltip(tooltip: TooltipOptions<Data>): this {\n this._tooltipOptions = tooltip;\n if (this._tooltip)\n this._tooltip.options = tooltip.options ?? {};\n else {\n this._tooltip = L.tooltip(tooltip.options)\n }\n return this\n }\n\n getTooltip(): L.Tooltip | undefined {\n return this._tooltip\n }\n\n bindTooltip(content: L.Tooltip | L.Content, options?: L.TooltipOptions): this {\n if (content instanceof L.Tooltip) {\n this._tooltip = content;\n // FIXME: weird bug likely coming from vue-leaflet were tooltip is not properly positioned\n // this._tooltip.options.offset[0] -= 5;\n if (this._map) {\n this._tooltip.setLatLng([0, 0]).addTo(this._map)\n }\n } else {\n this._tooltip = L.tooltip(options).setContent(content);\n }\n return this\n }\n\n unbindTooltip(): this {\n this._tooltip?.remove();\n this._tooltip = undefined;\n return this\n }\n\n /*\n * Returns an array of the points in the path, or nested arrays of points in case of multi-polyline.\n */\n getLatLngs() {\n const that = this;\n\n // Map the data into an array of latLngs using the configured lat/lng accessors\n return this._data.map(function (d) {\n return L.latLng(that._fn.lat(d), that._fn.lng(d));\n });\n }\n /*\n * Get path geometry as GeoJSON\n */\n toGeoJSON(): GeoJSON.Feature<GeoJSON.MultiPoint, L.LatLng> {\n return L.GeoJSON.getFeature<L.LatLng, GeoJSON.MultiPoint>(this, {\n type: 'MultiPoint',\n coordinates: L.GeoJSON.latLngsToCoords(this.getLatLngs(), 0)\n });\n }\n}\n\n/**\n * Factory function to instanciate a new hexbin layer\n */\nexport function hexbinLayer<Data = L.LatLngExpression>(options?: HexbinLayerConfig) {\n return new HexbinLayer<Data>(options);\n}\n\n\n"],"names":["HexbinHoverHandler","resizeFill","svg","hexLayer","event","data","d3","d","resizeScale","radiusScale","compound","handlers","none","h","HexbinHoverHandler$1","isLatLngExpression","L","HexbinLayer","options","val","scaleLinear","dispatch","hexbin","x","_","y","select","map","_a","latlng","that","coord","point","join","enterUpdate","from","to","length","step","i","g","thisLayer","size","bounds","bins","colorExtent","radiusExtent","opacityExtent","colorDomain","radiusDomain","container","hexagons","ev","_b","latLng","exit","valueFn","scaleExtent","ext","extent","v","accessor","tooltip","content","hexbinLayer"],"mappings":"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"}
|
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 on hover.\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\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', this.redraw, this);\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(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","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,16 +1,31 @@
|
|
1
1
|
import { HexbinData, HexbinLayer } from './HexbinLayer';
|
2
|
+
/**
|
3
|
+
* Interface for handling hover events on hexbins.
|
4
|
+
*/
|
2
5
|
export interface HexbinHoverHandler<Data> {
|
3
6
|
mouseover(svg: SVGPathElement, hexLayer: HexbinLayer<Data>, event: MouseEvent, data: HexbinData<Data>[]): void;
|
4
7
|
mouseout(svg: SVGPathElement, hexLayer: HexbinLayer<Data>, event: MouseEvent, data: HexbinData<Data>[]): void;
|
5
8
|
}
|
9
|
+
/**
|
10
|
+
* Built-in hover handlers for hexbins.
|
11
|
+
*/
|
6
12
|
export declare namespace HexbinHoverHandler {
|
13
|
+
/**
|
14
|
+
* Resize the hexbin to fill the hexagon grid cell on hover.
|
15
|
+
*/
|
7
16
|
function resizeFill(): HexbinHoverHandler<any>;
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
}
|
17
|
+
/**
|
18
|
+
* Resize the hexbin by a scaling factor on hover.
|
19
|
+
*/
|
12
20
|
function resizeScale(radiusScale?: number): HexbinHoverHandler<any>;
|
21
|
+
/**
|
22
|
+
* Compound multiple hover handlers into a single handler.
|
23
|
+
*/
|
13
24
|
function compound<Data>(handlers?: HexbinHoverHandler<Data>[]): HexbinHoverHandler<Data>;
|
25
|
+
/**
|
26
|
+
* No hover handler.
|
27
|
+
* @deprecated Will be removed in future versions
|
28
|
+
*/
|
14
29
|
function none(): HexbinHoverHandler<any>;
|
15
30
|
}
|
16
31
|
export default HexbinHoverHandler;
|
@@ -7,10 +7,17 @@ declare module 'leaflet' {
|
|
7
7
|
_container: SVGElementTagNameMap['svg'];
|
8
8
|
}
|
9
9
|
}
|
10
|
-
|
10
|
+
/**
|
11
|
+
* Tooltip definition for the hexbin layer.
|
12
|
+
* This can be used to generate a tooltip for each hexbin, if an external tooltip was not provided using bindTooltip()
|
13
|
+
*/
|
14
|
+
export type TooltipOptions<Data> = {
|
11
15
|
options?: L.TooltipOptions;
|
12
16
|
content?: L.Content | ((d: HexbinData<Data>[]) => L.Content);
|
13
17
|
};
|
18
|
+
/**
|
19
|
+
* Hexbin layer configuration options this can be provided when instantiating a new hexbin layer.
|
20
|
+
*/
|
14
21
|
export interface HexbinLayerConfig {
|
15
22
|
/**
|
16
23
|
* Hex grid cell radius in pixels.
|
@@ -78,6 +85,11 @@ export interface HexbinLayerConfig {
|
|
78
85
|
* @default 'all'
|
79
86
|
*/
|
80
87
|
pointerEvents?: string;
|
88
|
+
/**
|
89
|
+
* If true, the layer will not be redrawn after data changes and hover handler binding.
|
90
|
+
* @default false
|
91
|
+
*/
|
92
|
+
noRedraw?: boolean;
|
81
93
|
}
|
82
94
|
/**
|
83
95
|
* Hexbin data attached to each hexagon, once binned.
|
@@ -85,38 +97,44 @@ export interface HexbinLayerConfig {
|
|
85
97
|
export type HexbinData<Data> = {
|
86
98
|
data: Data;
|
87
99
|
coord: L.LatLngExpression;
|
88
|
-
point: Readonly<
|
100
|
+
point: Readonly<L.Point>;
|
89
101
|
};
|
90
102
|
/**
|
91
|
-
*
|
103
|
+
* A layer for displaying binned data in a hexagon grid on a Leaflet map.
|
92
104
|
* Extends L.SVG to take advantage of built-in zoom animations.
|
93
105
|
*/
|
94
106
|
export declare class HexbinLayer<Data = L.LatLngExpression> extends L.SVG {
|
107
|
+
/**
|
108
|
+
* Default options for the hexbin layer
|
109
|
+
*/
|
95
110
|
options: Required<HexbinLayerConfig> & L.RendererOptions;
|
96
|
-
|
97
|
-
|
98
|
-
|
111
|
+
/**
|
112
|
+
* Internal functions to access the data
|
113
|
+
*/
|
114
|
+
protected _fn: {
|
99
115
|
colorValue: (d: HexbinData<Data>[]) => number;
|
100
116
|
radiusValue: (d: HexbinData<Data>[]) => number;
|
101
117
|
opacityValue: (d: HexbinData<Data>[]) => number;
|
102
118
|
fill: (d: HexbinData<Data>[]) => string;
|
103
119
|
};
|
120
|
+
/**
|
121
|
+
* D3 scales used for the hexbin layer
|
122
|
+
*/
|
104
123
|
_scale: {
|
105
124
|
color: import('d3').ScaleLinear<string, string, never>;
|
106
125
|
radius: import('d3').ScaleLinear<number, number, never>;
|
107
126
|
opacity: import('d3').ScaleLinear<number, number, never>;
|
108
127
|
};
|
109
|
-
_dispatch: import('d3').Dispatch<SVGPathElement>;
|
110
|
-
_hoverHandler: HexbinHoverHandler<Data>;
|
128
|
+
protected _dispatch: import('d3').Dispatch<SVGPathElement>;
|
129
|
+
protected _hoverHandler: HexbinHoverHandler<Data>;
|
111
130
|
_hexLayout: import('d3-hexbin').Hexbin<HexbinData<Data>>;
|
112
|
-
_data: Data[];
|
113
|
-
_map: L.Map;
|
114
|
-
_tooltipOptions: TooltipOptions<Data>;
|
115
|
-
_tooltip: L.Tooltip | undefined;
|
116
|
-
|
117
|
-
_d3Container: d3.Selection<SVGGElement, unknown, null, undefined>;
|
131
|
+
protected _data: Data[];
|
132
|
+
protected _map: L.Map;
|
133
|
+
protected _tooltipOptions: TooltipOptions<Data>;
|
134
|
+
protected _tooltip: L.Tooltip | undefined;
|
135
|
+
protected _d3Container: d3.Selection<SVGGElement, unknown, null, undefined>;
|
118
136
|
constructor(options?: HexbinLayerConfig);
|
119
|
-
_accessor(d: Data): L.LatLngExpression;
|
137
|
+
protected _accessor(d: Data): L.LatLngExpression;
|
120
138
|
/**
|
121
139
|
* Create the SVG container for the hexbins
|
122
140
|
* @private
|
@@ -127,7 +145,6 @@ export declare class HexbinLayer<Data = L.LatLngExpression> extends L.SVG {
|
|
127
145
|
* @param map Reference to the map to which this layer has been added
|
128
146
|
*/
|
129
147
|
onAdd(map: L.Map): this;
|
130
|
-
_project(latlng: L.LatLngExpression): readonly [number, number];
|
131
148
|
/**
|
132
149
|
* Callback made by Leaflet when the layer is removed from the map
|
133
150
|
* @param map Reference to the map from which this layer is being removed
|
@@ -135,56 +152,124 @@ export declare class HexbinLayer<Data = L.LatLngExpression> extends L.SVG {
|
|
135
152
|
onRemove(map: L.Map): this;
|
136
153
|
/**
|
137
154
|
* Clean up the svg container
|
138
|
-
* @private
|
139
155
|
*/
|
140
|
-
_destroyContainer(): void;
|
156
|
+
protected _destroyContainer(): void;
|
141
157
|
/**
|
142
158
|
* (Re)draws the hexbins data on the container
|
143
|
-
* @private
|
144
159
|
*/
|
145
160
|
redraw(): void;
|
146
|
-
_linearlySpace(from: number, to: number, length: number): number[];
|
161
|
+
protected _linearlySpace(from: number, to: number, length: number): number[];
|
147
162
|
_createHexagons(g: d3.Selection<SVGGElement, number, SVGGElement, unknown>, data: HexbinData<Data>[]): void;
|
148
163
|
_getExtent(bins: HexbinBin<HexbinData<Data>>[], valueFn: (d: HexbinBin<HexbinData<Data>>) => number, scaleExtent: [number, number | undefined]): [number, number];
|
164
|
+
/**
|
165
|
+
* Get or set the radius of the hexagon grid cells
|
166
|
+
*/
|
149
167
|
radius(): number;
|
150
168
|
radius(v: number): this;
|
169
|
+
/**
|
170
|
+
* Get or set the opacity of the hexbin layer
|
171
|
+
* @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.
|
172
|
+
*/
|
151
173
|
opacity(): number | [number, number];
|
152
174
|
opacity(v: number | [number, number]): this;
|
175
|
+
/**
|
176
|
+
* Get or set the duration of transition animations
|
177
|
+
*/
|
153
178
|
duration(): number;
|
154
179
|
duration(v: number): this;
|
180
|
+
/**
|
181
|
+
* Get or set the color scale domain extent
|
182
|
+
* @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.
|
183
|
+
*/
|
155
184
|
colorScaleExtent(): [number, number | undefined];
|
156
185
|
colorScaleExtent(v: [number, number | undefined]): this;
|
186
|
+
/**
|
187
|
+
* Get or set the radius scale domain extent
|
188
|
+
* @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.
|
189
|
+
*/
|
157
190
|
radiusScaleExtent(): [number, number | undefined];
|
158
191
|
radiusScaleExtent(v: [number, number | undefined]): this;
|
192
|
+
/**
|
193
|
+
* Get or set the opacity scale domain extent
|
194
|
+
* @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.
|
195
|
+
*/
|
159
196
|
opacityScaleExtent(): [number, number | undefined];
|
160
197
|
opacityScaleExtent(v: [number, number | undefined]): this;
|
198
|
+
/**
|
199
|
+
* Get or set the color scale range
|
200
|
+
* @param v The color range to set. Colors will be interpolated between all provided colors.
|
201
|
+
*/
|
161
202
|
colorRange(): string[];
|
162
203
|
colorRange(v: string[]): this;
|
204
|
+
/**
|
205
|
+
* Get or set the radius scale range
|
206
|
+
* @param v The min and max radius range to set. If null, the range will be set to the hexagon grid cell radius value.
|
207
|
+
*/
|
163
208
|
radiusRange(): [number, number] | null;
|
164
209
|
radiusRange(v: [number, number] | null): this;
|
210
|
+
/**
|
211
|
+
* Get or set the color scale domain
|
212
|
+
*/
|
165
213
|
colorScale(): d3.ScaleLinear<string, string>;
|
166
214
|
colorScale(v: d3.ScaleLinear<string, string>): this;
|
215
|
+
/**
|
216
|
+
* Get or set the radius scale domain
|
217
|
+
*/
|
167
218
|
radiusScale(): d3.ScaleLinear<number, number>;
|
168
219
|
radiusScale(v: d3.ScaleLinear<number, number>): this;
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
220
|
+
/**
|
221
|
+
* Get or set the value mapper for the color scale
|
222
|
+
* @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
|
+
* @default the length of the data in the hexbin
|
224
|
+
*/
|
173
225
|
colorValue(): (d: HexbinData<Data>[]) => number;
|
174
226
|
colorValue(v: (d: HexbinData<Data>[]) => number): this;
|
227
|
+
/**
|
228
|
+
* Get or set the value mapper for the radius scale
|
229
|
+
* @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
|
+
* @default the length of the data in the hexbin
|
231
|
+
*/
|
175
232
|
radiusValue(): (d: HexbinData<Data>[]) => number;
|
176
233
|
radiusValue(v: (d: HexbinData<Data>[]) => number): this;
|
234
|
+
/**
|
235
|
+
* Get or set the value mapper for the fill color of the hexbins
|
236
|
+
* @param v The value mapper to set. This function should return a string to be used as the fill color for the hexbin.
|
237
|
+
* @default a color interpolated from the color scale based on the value returned by the colorValue function
|
238
|
+
*/
|
177
239
|
fill(): (d: HexbinData<Data>[]) => string;
|
178
240
|
fill(v: (d: HexbinData<Data>[]) => string): this;
|
241
|
+
/**
|
242
|
+
* Get or set the data to be binned by the hexbin layer.
|
243
|
+
* Triggers a redraw of the hexbins when set.
|
244
|
+
* @param v The data to set. This should be an array of data to be binned.
|
245
|
+
* @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.
|
246
|
+
*/
|
179
247
|
data(): Data[];
|
180
248
|
data(v: Data extends L.LatLngExpression ? Data[] : never): this;
|
181
249
|
data(v: Data[], accessor?: (d: Data) => L.LatLngExpression): this;
|
250
|
+
accessor(): (d: Data) => L.LatLngExpression;
|
182
251
|
dispatch(): import('d3').Dispatch<SVGPathElement>;
|
252
|
+
/**
|
253
|
+
* Get or set the hover handler for the hexbin layer.
|
254
|
+
*/
|
183
255
|
hoverHandler(): HexbinHoverHandler<Data>;
|
184
256
|
hoverHandler(v: HexbinHoverHandler<Data>): this;
|
257
|
+
/**
|
258
|
+
* Get or set the tooltip content and options for the hexbin layer.
|
259
|
+
*/
|
185
260
|
tooltip(tooltip: TooltipOptions<Data>): this;
|
261
|
+
/**
|
262
|
+
* Get the tooltip instance attached to the hexbin layer
|
263
|
+
*/
|
186
264
|
getTooltip(): L.Tooltip | undefined;
|
265
|
+
/**
|
266
|
+
* Bind a tooltip to the hexbin layer with the provided content and options.
|
267
|
+
* Useful to bind an existing tooltip instance to the hexbin layer.
|
268
|
+
*/
|
187
269
|
bindTooltip(content: L.Tooltip | L.Content, options?: L.TooltipOptions): this;
|
270
|
+
/**
|
271
|
+
* Unbind the tooltip from the hexbin layer
|
272
|
+
*/
|
188
273
|
unbindTooltip(): this;
|
189
274
|
getLatLngs(): L.LatLng[];
|
190
275
|
toGeoJSON(): GeoJSON.Feature<GeoJSON.MultiPoint, L.LatLng>;
|
@@ -193,4 +278,3 @@ export declare class HexbinLayer<Data = L.LatLngExpression> extends L.SVG {
|
|
193
278
|
* Factory function to instanciate a new hexbin layer
|
194
279
|
*/
|
195
280
|
export declare function hexbinLayer<Data = L.LatLngExpression>(options?: HexbinLayerConfig): HexbinLayer<Data>;
|
196
|
-
export {};
|
package/dist/types/index.d.ts
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
import { HexbinLayer as CHexbinLayer, HexbinLayerConfig as IHexbinLayerConfig, hexbinLayer, HexbinData } from './HexbinLayer';
|
1
|
+
import { HexbinLayer as CHexbinLayer, HexbinLayerConfig as IHexbinLayerConfig, hexbinLayer, HexbinData, TooltipOptions } from './HexbinLayer';
|
2
2
|
import { default as HexbinHoverHandler } from './HexbinHoverHandler';
|
3
|
-
export { type HexbinData, HexbinHoverHandler, CHexbinLayer as HexbinLayer, hexbinLayer, type IHexbinLayerConfig as HexbinLayerConfig };
|
3
|
+
export { type HexbinData, HexbinHoverHandler, CHexbinLayer as HexbinLayer, hexbinLayer, type IHexbinLayerConfig as HexbinLayerConfig, type TooltipOptions, };
|