leaflet-hexbin 0.1.2 → 0.1.4
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 +135 -128
- 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 +104 -25
- package/dist/types/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
@@ -4,49 +4,49 @@ import { hexbin as w } from "d3-hexbin";
|
|
4
4
|
import * as c from "leaflet";
|
5
5
|
var v;
|
6
6
|
((r) => {
|
7
|
-
function
|
7
|
+
function o() {
|
8
8
|
return {
|
9
|
-
mouseover: function(u, n,
|
9
|
+
mouseover: function(u, n, a, p) {
|
10
10
|
f.select(u.parentElement).select("path.hexbin-hexagon").transition().duration(n.options.duration).attr("d", function(h) {
|
11
11
|
return n._hexLayout.hexagon(n.options.radius);
|
12
12
|
});
|
13
13
|
},
|
14
|
-
mouseout: function(u, n,
|
14
|
+
mouseout: function(u, n, a, p) {
|
15
15
|
f.select(u.parentElement).select("path.hexbin-hexagon").transition().duration(n.options.duration).attr("d", function(h) {
|
16
|
-
return n._hexLayout.hexagon(n.
|
16
|
+
return n._hexLayout.hexagon(n.radiusScale()(n.radiusValue()(h)));
|
17
17
|
});
|
18
18
|
}
|
19
19
|
};
|
20
20
|
}
|
21
|
-
r.resizeFill =
|
21
|
+
r.resizeFill = o;
|
22
22
|
function i(u = 1.5) {
|
23
23
|
return {
|
24
|
-
mouseover: function(n,
|
25
|
-
f.select(n.parentElement).select("path.hexbin-hexagon").transition().duration(
|
26
|
-
return
|
24
|
+
mouseover: function(n, a, p, d) {
|
25
|
+
f.select(n.parentElement).select("path.hexbin-hexagon").transition().duration(a.options.duration).attr("d", function() {
|
26
|
+
return a._hexLayout.hexagon(a.radiusScale().range()[1] * u);
|
27
27
|
});
|
28
28
|
},
|
29
|
-
mouseout: function(n,
|
30
|
-
f.select(n.parentElement).select("path.hexbin-hexagon").transition().duration(
|
29
|
+
mouseout: function(n, a, p, d) {
|
30
|
+
f.select(n.parentElement).select("path.hexbin-hexagon").transition().duration(a.options.duration).attr("d", (m) => a._hexLayout.hexagon(a.radiusScale()(a.radiusValue()(m))));
|
31
31
|
}
|
32
32
|
};
|
33
33
|
}
|
34
34
|
r.resizeScale = i;
|
35
|
-
function
|
35
|
+
function t(u = [l()]) {
|
36
36
|
return {
|
37
|
-
mouseover: function(n,
|
37
|
+
mouseover: function(n, a, p, d) {
|
38
38
|
u.forEach((h) => {
|
39
|
-
h.mouseover(n,
|
39
|
+
h.mouseover(n, a, p, d);
|
40
40
|
});
|
41
41
|
},
|
42
|
-
mouseout: function(n,
|
42
|
+
mouseout: function(n, a, p, d) {
|
43
43
|
u.forEach((h) => {
|
44
|
-
h.mouseout(n,
|
44
|
+
h.mouseout(n, 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() {
|
@@ -61,8 +61,16 @@ const V = v;
|
|
61
61
|
function O(r) {
|
62
62
|
return r instanceof c.LatLng || typeof r == "object" && "lat" in r && "lng" in r || Array.isArray(r) && r.length === 2 && typeof r[0] == "number" && typeof r[1] == "number";
|
63
63
|
}
|
64
|
-
|
65
|
-
|
64
|
+
const C = (r, o) => {
|
65
|
+
let i;
|
66
|
+
return function(...t) {
|
67
|
+
clearTimeout(i), i = setTimeout(() => {
|
68
|
+
r(...t);
|
69
|
+
}, o);
|
70
|
+
};
|
71
|
+
};
|
72
|
+
class H extends c.SVG {
|
73
|
+
constructor(o) {
|
66
74
|
super(), this.options = {
|
67
75
|
radius: 12,
|
68
76
|
opacity: 0.6,
|
@@ -81,25 +89,23 @@ class C extends c.SVG {
|
|
81
89
|
...c.Renderer.prototype.options,
|
82
90
|
...c.Layer.prototype.options
|
83
91
|
}, this._fn = {
|
84
|
-
lng: (i) => c.latLng(this._accessor(i)).lng,
|
85
|
-
lat: (i) => c.latLng(this._accessor(i)).lat,
|
86
92
|
colorValue: (i) => i.length,
|
87
93
|
radiusValue: (i) => i.length,
|
88
94
|
opacityValue: (i) => i.length,
|
89
95
|
fill: (i) => {
|
90
|
-
const
|
91
|
-
return
|
96
|
+
const t = this._fn.colorValue(i);
|
97
|
+
return t != null ? this._scale.color(t) : "none";
|
92
98
|
}
|
93
99
|
}, this._scale = {
|
94
100
|
color: y(),
|
95
101
|
radius: y(),
|
96
102
|
opacity: y()
|
97
|
-
}, this._dispatch = R("mouseover", "mouseout", "click"), this._hoverHandler = V.none(), this._hexLayout = w().radius(this.options.radius).x(({ point:
|
103
|
+
}, this._dispatch = R("mouseover", "mouseout", "click"), this._hoverHandler = V.none(), this._hexLayout = w().radius(this.options.radius).x(({ point: { x: i } }) => i).y(({ point: { y: i } }) => i), this._data = Array(), this._tooltipOptions = {}, this.options = { ...this.options, ...o }, this._scale.color.range(this.options.colorRange).clamp(!0), this._scale.radius.range(this.options.radiusRange ?? [this.options.radius, this.options.radius]).clamp(!0), this._scale.opacity.range(
|
98
104
|
typeof this.options.opacity == "number" ? [this.options.opacity, this.options.opacity] : this.options.opacity
|
99
105
|
).clamp(!0);
|
100
106
|
}
|
101
|
-
_accessor(
|
102
|
-
return
|
107
|
+
_accessor(o) {
|
108
|
+
return o;
|
103
109
|
}
|
104
110
|
/**
|
105
111
|
* Create the SVG container for the hexbins
|
@@ -112,164 +118,165 @@ class C extends c.SVG {
|
|
112
118
|
* Callback made by Leaflet when the layer is added to the map
|
113
119
|
* @param map Reference to the map to which this layer has been added
|
114
120
|
*/
|
115
|
-
onAdd(
|
121
|
+
onAdd(o) {
|
116
122
|
var i;
|
117
|
-
return super.onAdd(
|
118
|
-
}
|
119
|
-
_project(t) {
|
120
|
-
const { x: i, y: o } = this._map.latLngToLayerPoint(t);
|
121
|
-
return [i, o];
|
123
|
+
return super.onAdd(o), this._map = o, (i = this._tooltip) == null || i.setLatLng([0, 0]).addTo(o), o.on("moveend", C(() => this.redraw(), 100)), this.redraw(), this;
|
122
124
|
}
|
123
125
|
/**
|
124
126
|
* Callback made by Leaflet when the layer is removed from the map
|
125
127
|
* @param map Reference to the map from which this layer is being removed
|
126
128
|
*/
|
127
|
-
onRemove(
|
128
|
-
return this._destroyContainer(),
|
129
|
+
onRemove(o) {
|
130
|
+
return this._destroyContainer(), o.off("moveend", this.redraw, this), this;
|
129
131
|
}
|
130
132
|
/**
|
131
133
|
* Clean up the svg container
|
132
|
-
* @private
|
133
134
|
*/
|
134
135
|
_destroyContainer() {
|
135
136
|
L(this._container).remove();
|
136
137
|
}
|
137
138
|
/**
|
138
139
|
* (Re)draws the hexbins data on the container
|
139
|
-
* @private
|
140
140
|
*/
|
141
141
|
redraw() {
|
142
|
-
const
|
143
|
-
if (!
|
144
|
-
const i =
|
145
|
-
const
|
146
|
-
return { coord:
|
147
|
-
}),
|
142
|
+
const o = this;
|
143
|
+
if (!o._map) return;
|
144
|
+
const i = o._data.map((n) => {
|
145
|
+
const a = o._accessor(n), p = o._map.latLngToLayerPoint(a);
|
146
|
+
return { coord: a, point: p, data: n };
|
147
|
+
}), t = this._d3Container.selectAll("g.hexbin").data([this._map.getZoom()], (n) => n), u = t.enter().append("g").attr("class", function(n) {
|
148
148
|
return "hexbin zoom-" + n;
|
149
|
-
}).merge(
|
150
|
-
|
151
|
-
}
|
152
|
-
_linearlySpace(
|
153
|
-
const l = (i -
|
154
|
-
return Array.from({ length:
|
155
|
-
}
|
156
|
-
_createHexagons(
|
157
|
-
const
|
158
|
-
({ x: e, y:
|
159
|
-
),
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
),
|
164
|
-
|
165
|
-
const
|
166
|
-
|
167
|
-
const x =
|
168
|
-
x.on("mouseover", function(e,
|
149
|
+
}).merge(t);
|
150
|
+
t.exit().remove(), this._createHexagons(u, i);
|
151
|
+
}
|
152
|
+
_linearlySpace(o, i, t) {
|
153
|
+
const l = (i - o) / Math.max(t - 1, 1);
|
154
|
+
return Array.from({ length: t }, (u, n) => o + n * l);
|
155
|
+
}
|
156
|
+
_createHexagons(o, i) {
|
157
|
+
const t = this, l = t._map.getSize(), u = t._map.getBounds().pad(t.options.radius * 2 / Math.max(l.x, l.y)), n = t._hexLayout(i).filter(
|
158
|
+
({ x: e, y: s }) => u.contains(t._map.layerPointToLatLng(c.point(e, s)))
|
159
|
+
), a = t._getExtent(n, t._fn.colorValue, t.options.colorScaleExtent), p = t._getExtent(n, t._fn.radiusValue, t.options.radiusScaleExtent), d = t._getExtent(n, t._fn.opacityValue, t.options.opacityScaleExtent), h = this.options.colorDomain ?? t._linearlySpace(
|
160
|
+
a[0],
|
161
|
+
a[1],
|
162
|
+
t._scale.color.range().length
|
163
|
+
), m = this.options.radiusDomain || p;
|
164
|
+
t._scale.color.domain(h), t._scale.radius.domain(m), t._scale.opacity.domain(d);
|
165
|
+
const g = o.selectAll("g.hexbin-container").data(n, ({ x: e, y: s }) => `${e}:${s}`);
|
166
|
+
g.select("path.hexbin-hexagon").transition().duration(t.options.duration).attr("fill", t._fn.fill.bind(t)).attr("fill-opacity", (e) => t._scale.opacity(t._fn.opacityValue.call(t, e))).attr("stroke-opacity", (e) => t._scale.opacity(t._fn.opacityValue.call(t, e))).attr("d", (e) => t._hexLayout.hexagon(t._scale.radius(t._fn.radiusValue.call(t, e))));
|
167
|
+
const x = g.enter().append("g").attr("class", "hexbin-container").style("pointer-events", t.options.pointerEvents);
|
168
|
+
x.on("mouseover", function(e, s) {
|
169
169
|
L(this).raise();
|
170
170
|
});
|
171
|
-
const b = x.append("path").attr("class", "hexbin-hexagon").attr("transform", ({ x: e, y:
|
172
|
-
b.transition().duration(
|
171
|
+
const b = x.append("path").attr("class", "hexbin-hexagon").attr("transform", ({ x: e, y: s }) => `translate(${e},${s})`).attr("d", () => t._hexLayout.hexagon(t._scale.radius.range()[0])).attr("fill", t._fn.fill.bind(t)).attr("fill-opacity", 0.01).attr("stroke-opacity", 0.01).style("pointer-events", "all");
|
172
|
+
b.transition().duration(t.options.duration).attr("fill-opacity", (e) => t._scale.opacity(t._fn.opacityValue.call(t, e))).attr("stroke-opacity", (e) => t._scale.opacity(t._fn.opacityValue.call(t, e))).attr("d", (e) => t._hexLayout.hexagon(t._scale.radius(t._fn.radiusValue.call(t, e)))).style("pointer-events", "all"), x.append("path").attr("class", "hexbin-grid").attr("transform", ({ x: e, y: s }) => `translate(${e},${s})`).attr("d", () => t._hexLayout.hexagon(t.options.radius)).attr("fill", "none").attr("stroke", "none"), b.on("mouseover", function(e, s) {
|
173
173
|
var _, S;
|
174
|
-
(_ =
|
175
|
-
typeof
|
174
|
+
(_ = t._tooltipOptions) != null && _.content && ((S = t._tooltip) == null || S.setContent(
|
175
|
+
typeof t._tooltipOptions.content == "function" ? t._tooltipOptions.content(s) : t._tooltipOptions.content
|
176
176
|
).setLatLng(
|
177
|
-
|
178
|
-
).openOn(
|
179
|
-
}).on("mouseout", function(e,
|
177
|
+
t._map.layerPointToLatLng(c.point(s.x, s.y))
|
178
|
+
).openOn(t._map)), t._hoverHandler.mouseover(this, t, e, s), t._dispatch.call("mouseover", this, s, t, e), this.classList.add("hover");
|
179
|
+
}).on("mouseout", function(e, s) {
|
180
180
|
var _;
|
181
|
-
(_ =
|
182
|
-
}).on("click", function(e,
|
183
|
-
const _ =
|
184
|
-
|
181
|
+
(_ = t._tooltip) == null || _.close(), t._hoverHandler.mouseout(this, t, e, s), t._dispatch.call("mouseout", this, s, t, e), this.classList.remove("hover");
|
182
|
+
}).on("click", function(e, s) {
|
183
|
+
const _ = t._map.layerPointToLatLng(c.point(s.x, s.y));
|
184
|
+
t._dispatch.call("click", this, s, _, t, e), e.stopPropagation();
|
185
185
|
});
|
186
|
-
const E =
|
187
|
-
E.select("path.hexbin-hexagon").transition().duration(
|
188
|
-
}
|
189
|
-
_getExtent(t, i, o) {
|
190
|
-
let l = T(t, i.bind(this));
|
191
|
-
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;
|
186
|
+
const E = g.exit();
|
187
|
+
E.select("path.hexbin-hexagon").transition().duration(t.options.duration).attr("fill-opacity", 0).attr("stroke-opacity", 0).attr("d", (e) => t._hexLayout.hexagon(0)), E.transition().duration(t.options.duration).remove();
|
192
188
|
}
|
193
|
-
|
194
|
-
|
189
|
+
_getExtent(o, i, t) {
|
190
|
+
let l = T(o, i.bind(this));
|
191
|
+
return (l[0] === void 0 || l[1] === void 0) && (l = [0, 0]), t[0] != null && (l[0] = t[0]), t[1] != null && (l[1] = t[1]), l;
|
195
192
|
}
|
196
|
-
|
197
|
-
return
|
193
|
+
radius(o) {
|
194
|
+
return o === void 0 ? this.options.radius : (this.options.radius = o, this._hexLayout.radius(o), this.options.radiusRange == null && this._scale.radius.range([this.options.radius, this.options.radius]).clamp(!0), this);
|
198
195
|
}
|
199
|
-
|
200
|
-
return
|
196
|
+
opacity(o) {
|
197
|
+
return o === void 0 ? this.options.opacity : (this.options.opacity = o, this._scale.opacity.range(typeof o == "number" ? [o, o] : o).clamp(!0), this);
|
201
198
|
}
|
202
|
-
|
203
|
-
return
|
199
|
+
duration(o) {
|
200
|
+
return o === void 0 ? this.options.duration : (this.options.duration = o, this);
|
204
201
|
}
|
205
|
-
|
206
|
-
return
|
202
|
+
colorScaleExtent(o) {
|
203
|
+
return o === void 0 ? this.options.colorScaleExtent : (this.options.colorScaleExtent = o, this);
|
207
204
|
}
|
208
|
-
|
209
|
-
return
|
205
|
+
radiusScaleExtent(o) {
|
206
|
+
return o === void 0 ? this.options.radiusScaleExtent : (this.options.radiusScaleExtent = o, this);
|
210
207
|
}
|
211
|
-
|
212
|
-
return
|
208
|
+
opacityScaleExtent(o) {
|
209
|
+
return o === void 0 ? this.options.opacityScaleExtent : (this.options.opacityScaleExtent = o, this);
|
213
210
|
}
|
214
|
-
|
215
|
-
return
|
211
|
+
colorRange(o) {
|
212
|
+
return o === void 0 ? this.options.colorRange : (this.options.colorRange = o, this._scale.color.range(o), this);
|
216
213
|
}
|
217
|
-
|
218
|
-
return
|
214
|
+
radiusRange(o) {
|
215
|
+
return o === void 0 ? this.options.radiusRange : (this.options.radiusRange = o, this._scale.radius.range(this.options.radiusRange ?? [this.options.radius, this.options.radius]).clamp(!0), this);
|
219
216
|
}
|
220
|
-
|
221
|
-
return
|
217
|
+
colorScale(o) {
|
218
|
+
return o === void 0 ? this._scale.color : (this._scale.color = o, this);
|
222
219
|
}
|
223
|
-
|
224
|
-
return
|
220
|
+
radiusScale(o) {
|
221
|
+
return o === void 0 ? this._scale.radius : (this._scale.radius = o, this);
|
225
222
|
}
|
226
|
-
|
227
|
-
return
|
223
|
+
colorValue(o) {
|
224
|
+
return o === void 0 ? this._fn.colorValue : (this._fn.colorValue = o, this);
|
228
225
|
}
|
229
|
-
|
230
|
-
return
|
226
|
+
radiusValue(o) {
|
227
|
+
return o === void 0 ? this._fn.radiusValue : (this._fn.radiusValue = o, this);
|
231
228
|
}
|
232
|
-
|
233
|
-
return
|
234
|
-
}
|
235
|
-
fill(t) {
|
236
|
-
return t === void 0 ? this._fn.fill : (this._fn.fill = t, this);
|
229
|
+
fill(o) {
|
230
|
+
return o === void 0 ? this._fn.fill : (this._fn.fill = o, this);
|
237
231
|
}
|
238
232
|
// Implementation
|
239
|
-
data(
|
240
|
-
return
|
233
|
+
data(o, i) {
|
234
|
+
return o === void 0 ? this._data : (!O(o[0]) && !i && console.error("Leaflet hexbin: data does not appear to be an array of L.LatLngExpression. You must provide an accessor function to convert the data to L.LatLngExpression"), this._data = o ?? [], this._accessor = i ?? ((t) => t), this.options.noRedraw || this.redraw(), this);
|
235
|
+
}
|
236
|
+
accessor() {
|
237
|
+
return this._accessor;
|
241
238
|
}
|
242
239
|
/*
|
243
|
-
* Getter for the event dispatcher
|
240
|
+
* Getter for the D3 event dispatcher
|
244
241
|
*/
|
245
242
|
dispatch() {
|
246
243
|
return this._dispatch;
|
247
244
|
}
|
248
|
-
hoverHandler(
|
249
|
-
return
|
245
|
+
hoverHandler(o) {
|
246
|
+
return o === void 0 ? this._hoverHandler : (this._hoverHandler = o ?? V.none(), this.options.noRedraw || this.redraw(), this);
|
250
247
|
}
|
248
|
+
/**
|
249
|
+
* Get or set the tooltip content and options for the hexbin layer.
|
250
|
+
*/
|
251
251
|
// Cannot overload bindTooltip() with data dependant content
|
252
|
-
tooltip(
|
253
|
-
return this._tooltipOptions =
|
252
|
+
tooltip(o) {
|
253
|
+
return this._tooltipOptions = o, this._tooltip ? this._tooltip.options = o.options ?? {} : this._tooltip = c.tooltip(o.options), this;
|
254
254
|
}
|
255
|
+
/**
|
256
|
+
* Get the tooltip instance attached to the hexbin layer
|
257
|
+
*/
|
255
258
|
getTooltip() {
|
256
259
|
return this._tooltip;
|
257
260
|
}
|
258
|
-
|
259
|
-
|
261
|
+
/**
|
262
|
+
* Bind a tooltip to the hexbin layer with the provided content and options.
|
263
|
+
* Useful to bind an existing tooltip instance to the hexbin layer.
|
264
|
+
*/
|
265
|
+
bindTooltip(o, i) {
|
266
|
+
return o instanceof c.Tooltip ? (this._tooltip = o, this._map && this._tooltip.setLatLng([0, 0]).addTo(this._map)) : this._tooltip = c.tooltip(i).setContent(o), this;
|
260
267
|
}
|
268
|
+
/**
|
269
|
+
* Unbind the tooltip from the hexbin layer
|
270
|
+
*/
|
261
271
|
unbindTooltip() {
|
262
|
-
var
|
263
|
-
return (
|
272
|
+
var o;
|
273
|
+
return (o = this._tooltip) == null || o.remove(), this._tooltip = void 0, this;
|
264
274
|
}
|
265
275
|
/*
|
266
276
|
* Returns an array of the points in the path, or nested arrays of points in case of multi-polyline.
|
267
277
|
*/
|
268
278
|
getLatLngs() {
|
269
|
-
|
270
|
-
return this._data.map(function(i) {
|
271
|
-
return c.latLng(t._fn.lat(i), t._fn.lng(i));
|
272
|
-
});
|
279
|
+
return this._data.map((o) => c.latLng(this._accessor(o)));
|
273
280
|
}
|
274
281
|
/*
|
275
282
|
* Get path geometry as GeoJSON
|
@@ -281,12 +288,12 @@ class C extends c.SVG {
|
|
281
288
|
});
|
282
289
|
}
|
283
290
|
}
|
284
|
-
function
|
285
|
-
return new
|
291
|
+
function z(r) {
|
292
|
+
return new H(r);
|
286
293
|
}
|
287
294
|
export {
|
288
295
|
V as HexbinHoverHandler,
|
289
|
-
|
290
|
-
|
296
|
+
H as HexbinLayer,
|
297
|
+
z as hexbinLayer
|
291
298
|
};
|
292
299
|
//# 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 * 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<[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 noRedraw: false,\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 if (!this.options.noRedraw) 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 if (!this.options.noRedraw) 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\nconst debounce = <T extends unknown[]>(\n callback: (...args: T) => void,\n delay: number,\n) => {\n let timeoutTimer: ReturnType<typeof setTimeout>;\n\n return function (...args: T) {\n clearTimeout(timeoutTimer);\n\n timeoutTimer = setTimeout(() => {\n callback(...args);\n }, delay);\n };\n};\n\n\n/**\n * A layer for displaying binned data in a hexagon grid on a Leaflet map.\n * Extends L.SVG to take advantage of built-in zoom animations.\n */\nexport class HexbinLayer<Data = L.LatLngExpression> extends L.SVG {\n /**\n * Default options for the hexbin layer\n */\n options: Required<HexbinLayerConfig> & L.RendererOptions = {\n radius: 12,\n opacity: 0.6,\n duration: 200,\n\n colorScaleExtent: [1, undefined],\n radiusScaleExtent: [1, undefined],\n opacityScaleExtent: [1, undefined],\n colorDomain: null,\n radiusDomain: null,\n colorRange: ['#f7fbff', '#08306b'],\n radiusRange: null,\n\n pointerEvents: 'all',\n noRedraw: false,\n // Handle parent default options\n // ...L.SVG.prototype.options,\n ...L.Renderer.prototype.options,\n ...L.Layer.prototype.options\n }\n\n /**\n * Internal functions to access the data\n */\n protected _fn = {\n colorValue: (d: HexbinData<Data>[]) => d.length,\n radiusValue: (d: HexbinData<Data>[]) => d.length,\n opacityValue: (d: HexbinData<Data>[]) => d.length,\n fill: (d: HexbinData<Data>[]) => {\n const val = this._fn.colorValue(d);\n return (null != val) ? this._scale.color(val) : 'none';\n }\n }\n /**\n * D3 scales used for the hexbin layer\n */\n _scale = {\n color: scaleLinear<string, string>(),\n radius: scaleLinear(),\n opacity: scaleLinear()\n };\n\n // Set up the Dispatcher for managing events and callbacks\n protected _dispatch = dispatch<SVGPathElement>('mouseover', 'mouseout', 'click');\n\n // Set up the default hover handler\n protected _hoverHandler: HexbinHoverHandler<Data> = HexbinHoverHandler.none();\n\n // Create the hex layout\n _hexLayout = hexbin<HexbinData<Data>>()\n .radius(this.options.radius)\n .x(({ point: { x } }) => x)\n .y(({ point: { y } }) => y);\n\n // Initialize the data array to be empty\n protected _data = Array<Data>()\n\n\n declare protected _map: L.Map;\n\n protected _tooltipOptions: TooltipOptions<Data> = {};\n declare protected _tooltip: L.Tooltip | undefined;\n\n // declare _container: SVGElementTagNameMap['svg'];\n\n // declare _container: HTMLElement;\n declare protected _d3Container: d3.Selection<SVGGElement, unknown, null, undefined>;\n\n public constructor(options?: HexbinLayerConfig) {\n super()\n // L.SVG.prototype.initialize.call(this, options);\n this.options = { ...this.options, ...options };\n this._scale.color\n .range(this.options.colorRange)\n .clamp(true);\n\n this._scale.radius\n .range(this.options.radiusRange ?? [this.options.radius, this.options.radius])\n .clamp(true);\n\n this._scale.opacity\n .range(\n typeof this.options.opacity === 'number'\n ? [this.options.opacity, this.options.opacity]\n : this.options.opacity\n ).clamp(true);\n\n };\n\n protected _accessor(d: Data) {\n return d as L.LatLngExpression;\n }\n\n /**\n * Create the SVG container for the hexbins\n * @private\n */\n _initContainer() {\n super._initContainer();\n this._d3Container = select(this._container).select<SVGElementTagNameMap['g']>('g');\n }\n /**\n * Callback made by Leaflet when the layer is added to the map\n * @param map Reference to the map to which this layer has been added\n */\n onAdd(map: L.Map): this {\n // Call super.onAdd to properly initialize the SVG pane\n super.onAdd(map)\n\n // Store a reference to the map for later use\n this._map = map;\n this._tooltip?.setLatLng([0, 0]).addTo(map);\n // Redraw on moveend\n map.on('moveend', debounce(() => this.redraw(), 100));\n // Initial draw\n this.redraw();\n return this\n }\n\n /**\n * Callback made by Leaflet when the layer is removed from the map\n * @param map Reference to the map from which this layer is being removed\n */\n onRemove(map: L.Map): this {\n // Destroy the svg container\n this._destroyContainer();\n // Remove events\n map.off('moveend', this.redraw, this);\n return this\n }\n\n /**\n * Clean up the svg container\n */\n protected _destroyContainer() {\n select(this._container).remove();\n }\n\n /**\n * (Re)draws the hexbins data on the container\n */\n public redraw() {\n const that = this;\n\n if (!that._map) return\n\n // Generate the mapped version of the data\n const data = that._data.map<HexbinData<Data>>((d: Data) => {\n const coord = that._accessor(d)\n const point = that._map.latLngToLayerPoint(coord);\n return { coord: coord, point, data: d };\n });\n\n // Select the hex group for the current zoom level. This has\n // the effect of recreating the group if the zoom level has changed\n const join = this._d3Container.selectAll<SVGGElement, number>('g.hexbin')\n .data<number>([this._map.getZoom()], (d) => d);\n\n // enter\n const enter = join.enter().append('g')\n .attr('class', function (d) { return 'hexbin zoom-' + d; });\n\n // enter + update\n const enterUpdate = enter.merge(join);\n\n // exit\n join.exit().remove();\n\n // add the hexagons to the select\n this._createHexagons(enterUpdate, data);\n\n }\n\n protected _linearlySpace(from: number, to: number, length: number): number[] {\n const step = (to - from) / Math.max(length - 1, 1);\n return Array.from({ length }, (_, i) => from + (i * step));\n }\n\n _createHexagons(g: d3.Selection<SVGGElement, number, SVGGElement, unknown>, data: HexbinData<Data>[]) {\n const thisLayer = this;\n\n // Create the bins using the hexbin layout\n\n // Generate the map bounds (to be used to filter the hexes to what is visible)\n const size = thisLayer._map.getSize();\n const bounds = thisLayer._map.getBounds().pad(thisLayer.options.radius * 2 / Math.max(size.x, size.y));\n\n const bins = thisLayer._hexLayout(data).filter(\n ({ x, y }) => bounds.contains(thisLayer._map.layerPointToLatLng(L.point(x, y)))\n );\n\n // Derive the extents of the data values for each dimension\n const colorExtent = thisLayer._getExtent(bins, thisLayer._fn.colorValue, thisLayer.options.colorScaleExtent);\n const radiusExtent = thisLayer._getExtent(bins, thisLayer._fn.radiusValue, thisLayer.options.radiusScaleExtent);\n const opacityExtent = thisLayer._getExtent(bins, thisLayer._fn.opacityValue, thisLayer.options.opacityScaleExtent);\n\n // Match the domain cardinality to that of the color range, to allow for a polylinear scale\n const colorDomain = this.options.colorDomain\n ?? thisLayer._linearlySpace(\n colorExtent[0],\n colorExtent[1],\n thisLayer._scale.color.range().length\n );\n const radiusDomain = this.options.radiusDomain || radiusExtent;\n\n // Set the scale domains\n thisLayer._scale.color.domain(colorDomain);\n thisLayer._scale.radius.domain(radiusDomain);\n thisLayer._scale.opacity.domain(opacityExtent);\n\n\n /*\n * Join\n * Join the Hexagons to the data\n * Use a deterministic id for tracking bins based on position\n */\n const join = g.selectAll<SVGGElement, HexbinBin<HexbinData<Data>>>('g.hexbin-container')\n .data(bins, ({ x, y }) => `${x}:${y}`);\n\n\n /*\n * Update\n * Set the fill and opacity on a transition\n * opacity is re-applied in case the enter transition was cancelled\n * the path is applied as well to resize the bins\n */\n join.select<SVGPathElement>('path.hexbin-hexagon')\n .transition().duration(thisLayer.options.duration)\n .attr('fill', thisLayer._fn.fill.bind(thisLayer))\n .attr('fill-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('stroke-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('d', (d) => {\n return thisLayer._hexLayout.hexagon(thisLayer._scale.radius(thisLayer._fn.radiusValue.call(thisLayer, d)));\n });\n\n\n /*\n * Enter\n * Establish the path, size, fill, and the initial opacity\n * Transition to the final opacity and size\n */\n const container = join.enter().append('g').attr('class', 'hexbin-container')\n .style('pointer-events', thisLayer.options.pointerEvents);\n\n\n container.on('mouseover', function (this: SVGGElement, d: MouseEvent, i) {\n // Bring container to foreground by re-appending it to the DOM\n select<SVGGElement, HexbinBin<HexbinData<Data>>>(this).raise();\n })\n\n const hexagons = container.append('path').attr('class', 'hexbin-hexagon')\n .attr('transform', ({ x, y }) => `translate(${x},${y})`)\n .attr('d', () => thisLayer._hexLayout.hexagon(thisLayer._scale.radius.range()[0]))\n // .attr('d', (data, length) => thisLayer._hexLayout.hexagon(thisLayer._scale.radius(data.length)))\n .attr('fill', thisLayer._fn.fill.bind(thisLayer))\n .attr('fill-opacity', 0.01)\n .attr('stroke-opacity', 0.01)\n .style('pointer-events', 'all');\n\n hexagons.transition().duration(thisLayer.options.duration)\n .attr('fill-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('stroke-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('d', (d) => thisLayer._hexLayout.hexagon(thisLayer._scale.radius(thisLayer._fn.radiusValue.call(thisLayer, d))))\n .style('pointer-events', 'all');\n\n // Grid\n const gridEnter = container.append('path').attr('class', 'hexbin-grid')\n .attr('transform', ({ x, y }) => `translate(${x},${y})`)\n .attr('d', () => thisLayer._hexLayout.hexagon(thisLayer.options.radius))\n .attr('fill', 'none')\n .attr('stroke', 'none')\n\n\n // Grid enter-update\n hexagons.on('mouseover', function (this: SVGPathElement, ev: MouseEvent, data) {\n if (thisLayer._tooltipOptions?.content) {\n thisLayer._tooltip\n ?.setContent(\n typeof thisLayer._tooltipOptions.content === \"function\"\n ? thisLayer._tooltipOptions.content(data)\n : thisLayer._tooltipOptions.content\n )\n .setLatLng(\n thisLayer._map.layerPointToLatLng(L.point(data.x, data.y))\n )\n .openOn(thisLayer._map);\n }\n thisLayer._hoverHandler.mouseover(this, thisLayer, ev, data);\n thisLayer._dispatch.call('mouseover', this, data, thisLayer, ev);\n this.classList.add('hover')\n })\n .on('mouseout', function (this: SVGPathElement, ev: MouseEvent, data) {\n thisLayer._tooltip?.close()\n thisLayer._hoverHandler.mouseout(this, thisLayer, ev, data);\n thisLayer._dispatch.call('mouseout', this, data, thisLayer, ev);\n this.classList.remove('hover')\n })\n .on('click', function (this, ev: MouseEvent, data) {\n const latLng = thisLayer._map.layerPointToLatLng(L.point(data.x, data.y));\n thisLayer._dispatch.call('click', this, data, latLng, thisLayer, ev);\n ev.stopPropagation()\n });\n\n\n // Exit\n const exit = join.exit();\n\n exit.select('path.hexbin-hexagon')\n .transition().duration(thisLayer.options.duration)\n .attr('fill-opacity', 0)\n .attr('stroke-opacity', 0)\n .attr('d', (d) => thisLayer._hexLayout.hexagon(0));\n\n exit.transition().duration(thisLayer.options.duration).remove();\n\n }\n\n _getExtent(\n bins: HexbinBin<HexbinData<Data>>[],\n valueFn: (d: HexbinBin<HexbinData<Data>>) => number,\n scaleExtent: [number, number | undefined]\n ): [number, number] {\n\n // Determine the extent of the values\n let ext = extent<HexbinBin<HexbinData<Data>>, number>(bins, valueFn.bind(this));\n // If either's null, initialize them to 0\n if (ext[0] === undefined || ext[1] === undefined) {\n ext = [0, 0]\n }\n\n // Now apply the optional clipping of the extent\n if (undefined != scaleExtent[0]) ext[0] = scaleExtent[0];\n if (undefined != scaleExtent[1]) ext[1] = scaleExtent[1];\n\n return ext as [number, number]\n }\n\n // ------------------------------------\n // Public API\n // ------------------------------------\n\n /**\n * Get or set the radius of the hexagon grid cells\n */\n radius(): number;\n radius(v: number): this;\n radius(v?: number): this | number {\n if (v === undefined) return this.options.radius;\n\n this.options.radius = v;\n this._hexLayout.radius(v);\n\n if (null == this.options.radiusRange) {\n this._scale.radius.range([this.options.radius, this.options.radius]).clamp(true);\n }\n\n return this;\n }\n\n\n /**\n * Get or set the opacity of the hexbin layer\n * @param v The opacity value to set. If an array is provided, the first element is the minimum opacity and the second is the maximum.\n */\n opacity(): number | [number, number];\n opacity(v: number | [number, number]): this;\n opacity(v?: number | [number, number]): this | number | [number, number] {\n if (v === undefined) return this.options.opacity\n this.options.opacity = v;\n this._scale.opacity.range(typeof v === 'number' ? [v, v] : v).clamp(true);\n\n return this;\n }\n\n /**\n * Get or set the duration of transition animations\n */\n duration(): number;\n duration(v: number): this;\n duration(v?: number): this | number {\n if (v === undefined) return this.options.duration\n this.options.duration = v\n\n return this;\n }\n\n /**\n * Get or set the color scale domain extent\n * @param v The color scale extent to set. If an array is provided, the first element is the minimum extent and the second is the maximum. This means that for the purpose of color interpolation, the domain will be clipped to this extent, i.e. values below the minimum will be treated as the minimum, and values above the maximum will be treated as the maximum.\n */\n colorScaleExtent(): [number, number | undefined];\n colorScaleExtent(v: [number, number | undefined]): this;\n colorScaleExtent(v?: [number, number | undefined]): this | [number, number | undefined] {\n if (v === undefined) { return this.options.colorScaleExtent; }\n this.options.colorScaleExtent = v;\n\n return this;\n }\n\n /**\n * Get or set the radius scale domain extent\n * @param v The radius scale extent to set. If an array is provided, the first element is the minimum extent and the second is the maximum. This means that for the purpose of radius interpolation, the domain will be clipped to this extent, i.e. values below the minimum will be treated as the minimum, and values above the maximum will be treated as the maximum.\n */\n radiusScaleExtent(): [number, number | undefined];\n radiusScaleExtent(v: [number, number | undefined]): this;\n radiusScaleExtent(v?: [number, number | undefined]): this | [number, number | undefined] {\n if (v === undefined) { return this.options.radiusScaleExtent; }\n this.options.radiusScaleExtent = v;\n\n return this;\n }\n\n /**\n * Get or set the opacity scale domain extent\n * @param v The opacity scale extent to set. If an array is provided, the first element is the minimum extent and the second is the maximum. This means that for the purpose of opacity interpolation, the domain will be clipped to this extent, i.e. values below the minimum will be treated as the minimum, and values above the maximum will be treated as the maximum.\n */\n opacityScaleExtent(): [number, number | undefined];\n opacityScaleExtent(v: [number, number | undefined]): this;\n opacityScaleExtent(v?: [number, number | undefined]): this | [number, number | undefined] {\n if (v === undefined) { return this.options.opacityScaleExtent; }\n this.options.opacityScaleExtent = v;\n\n return this;\n }\n\n\n /**\n * Get or set the color scale range\n * @param v The color range to set. Colors will be interpolated between all provided colors.\n */\n colorRange(): string[];\n colorRange(v: string[]): this;\n colorRange(v?: string[]): this | string[] {\n if (v === undefined) { return this.options.colorRange; }\n this.options.colorRange = v;\n this._scale.color.range(v);\n\n return this;\n }\n\n /**\n * Get or set the radius scale range\n * @param v The min and max radius range to set. If null, the range will be set to the hexagon grid cell radius value.\n */\n radiusRange(): [number, number] | null;\n radiusRange(v: [number, number] | null): this;\n radiusRange(v?: [number, number] | null): this | [number, number] | null {\n if (v === undefined) { return this.options.radiusRange; }\n this.options.radiusRange = v;\n this._scale.radius.range(this.options.radiusRange ?? [this.options.radius, this.options.radius]).clamp(true);\n\n return this;\n }\n\n /**\n * Get or set the color scale domain\n */\n colorScale(): d3.ScaleLinear<string, string>;\n colorScale(v: d3.ScaleLinear<string, string>): this;\n colorScale(v?: d3.ScaleLinear<string, string>) {\n if (v === undefined) return this._scale.color;\n this._scale.color = v;\n return this;\n }\n\n /**\n * Get or set the radius scale domain\n */\n radiusScale(): d3.ScaleLinear<number, number>;\n radiusScale(v: d3.ScaleLinear<number, number>): this;\n radiusScale(v?: d3.ScaleLinear<number, number>): this | d3.ScaleLinear<number, number> {\n if (v === undefined) return this._scale.radius\n this._scale.radius = v;\n return this;\n }\n\n /**\n * Get or set the value mapper for the color scale\n * @param v The value mapper to set. This function should accept an array of hexbin data and return a number to be used for color interpolation.\n * @default the length of the data in the hexbin\n */\n colorValue(): (d: HexbinData<Data>[]) => number;\n colorValue(v: (d: HexbinData<Data>[]) => number): this;\n colorValue(v?: (d: HexbinData<Data>[]) => number) {\n if (v === undefined) { return this._fn.colorValue; }\n this._fn.colorValue = v;\n\n return this;\n }\n\n /**\n * Get or set the value mapper for the radius scale\n * @param v The value mapper to set. This function should return a number for each bin, which will be used to determine the radius of the hexagon.\n * @default the length of the data in the hexbin\n */\n radiusValue(): (d: HexbinData<Data>[]) => number;\n radiusValue(v: (d: HexbinData<Data>[]) => number): this;\n radiusValue(v?: (d: HexbinData<Data>[]) => number) {\n if (v === undefined) { return this._fn.radiusValue; }\n this._fn.radiusValue = v;\n\n return this;\n }\n\n /**\n * Get or set the value mapper for the fill color of the hexbins\n * @param v The value mapper to set. This function should return a string to be used as the fill color for the hexbin.\n * @default a color interpolated from the color scale based on the value returned by the colorValue function\n */\n fill(): (d: HexbinData<Data>[]) => string;\n fill(v: (d: HexbinData<Data>[]) => string): this;\n fill(v?: (d: HexbinData<Data>[]) => string) {\n if (v === undefined) { return this._fn.fill; }\n this._fn.fill = v;\n\n return this;\n }\n\n /**\n * Get or set the data to be binned by the hexbin layer.\n * Triggers a redraw of the hexbins when set.\n * @param v The data to set. This should be an array of data to be binned.\n * @param accessor An optional function to convert the data into a LatLngExpression. If not provided, the data is assumed to be an array of LatLngExpressions.\n */\n data(): Data[];\n data(v: Data extends L.LatLngExpression ? Data[] : never): this;\n data(v: Data[], accessor?: (d: Data) => L.LatLngExpression): this;\n\n // Implementation\n data(v?: Data[] | L.LatLngExpression[], accessor?: (d: Data) => L.LatLngExpression): this | Data[] {\n if (v === undefined) {\n return this._data;\n }\n\n if (!isLatLngExpression(v[0]) && !accessor) {\n console.error(\"Leaflet hexbin: data does not appear to be an array of L.LatLngExpression. You must provide an accessor function to convert the data to L.LatLngExpression\");\n }\n\n this._data = v as Data[] ?? []\n this._accessor = accessor ?? ((d: Data) => d as L.LatLngExpression)\n\n if (!this.options.noRedraw) this.redraw();\n return this;\n }\n\n accessor(): (d: Data) => L.LatLngExpression {\n return this._accessor;\n }\n\n /*\n * Getter for the D3 event dispatcher\n */\n dispatch() { return this._dispatch }\n\n /**\n * Get or set the hover handler for the hexbin layer.\n */\n hoverHandler(): HexbinHoverHandler<Data>;\n hoverHandler(v: HexbinHoverHandler<Data>): this;\n hoverHandler(v?: HexbinHoverHandler<Data>): this | HexbinHoverHandler<Data> {\n if (v === undefined) { return this._hoverHandler; }\n this._hoverHandler = (null != v) ? v : HexbinHoverHandler.none();\n\n if (!this.options.noRedraw) this.redraw();\n\n return this;\n }\n\n /**\n * Get or set the tooltip content and options for the hexbin layer.\n */\n // Cannot overload bindTooltip() with data dependant content\n tooltip(tooltip: TooltipOptions<Data>): this {\n this._tooltipOptions = tooltip;\n if (this._tooltip)\n this._tooltip.options = tooltip.options ?? {};\n else {\n this._tooltip = L.tooltip(tooltip.options)\n }\n return this\n }\n\n /**\n * Get the tooltip instance attached to the hexbin layer\n */\n getTooltip(): L.Tooltip | undefined {\n return this._tooltip\n }\n\n /**\n * Bind a tooltip to the hexbin layer with the provided content and options.\n * Useful to bind an existing tooltip instance to the hexbin layer.\n */\n bindTooltip(content: L.Tooltip | L.Content, options?: L.TooltipOptions): this {\n if (content instanceof L.Tooltip) {\n this._tooltip = content;\n // FIXME: weird bug likely coming from vue-leaflet were tooltip is not properly positioned\n // this._tooltip.options.offset[0] -= 5;\n if (this._map) {\n this._tooltip.setLatLng([0, 0]).addTo(this._map)\n }\n } else {\n this._tooltip = L.tooltip(options).setContent(content);\n }\n return this\n }\n\n /**\n * Unbind the tooltip from the hexbin layer\n */\n unbindTooltip(): this {\n this._tooltip?.remove();\n this._tooltip = undefined;\n return this\n }\n\n /*\n * Returns an array of the points in the path, or nested arrays of points in case of multi-polyline.\n */\n getLatLngs() {\n // Map the data into an array of latLngs using the configured lat/lng accessors\n return this._data.map((d) => {\n return L.latLng(this._accessor(d));\n });\n }\n /*\n * Get path geometry as GeoJSON\n */\n toGeoJSON(): GeoJSON.Feature<GeoJSON.MultiPoint, L.LatLng> {\n return L.GeoJSON.getFeature<L.LatLng, GeoJSON.MultiPoint>(this, {\n type: 'MultiPoint',\n coordinates: L.GeoJSON.latLngsToCoords(this.getLatLngs(), 0)\n });\n }\n}\n\n/**\n * Factory function to instanciate a new hexbin layer\n */\nexport function hexbinLayer<Data = L.LatLngExpression>(options?: HexbinLayerConfig) {\n return new HexbinLayer<Data>(options);\n}\n\n\n"],"names":["HexbinHoverHandler","resizeFill","svg","hexLayer","event","data","d3","d","resizeScale","radiusScale","compound","handlers","none","HexbinHoverHandler$1","isLatLngExpression","L","debounce","callback","delay","timeoutTimer","args","HexbinLayer","options","val","scaleLinear","dispatch","hexbin","x","y","select","map","_a","that","coord","point","join","enterUpdate","from","to","length","step","_","i","g","thisLayer","size","bounds","bins","colorExtent","radiusExtent","opacityExtent","colorDomain","radiusDomain","container","hexagons","ev","_b","latLng","exit","valueFn","scaleExtent","ext","extent","v","accessor","tooltip","content","hexbinLayer"],"mappings":"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"}
|
package/dist/index.umd.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
(function(h,u){typeof exports=="object"&&typeof module<"u"?u(exports,require("d3"),require("d3-hexbin"),require("leaflet")):typeof define=="function"&&define.amd?define(["exports","d3","d3-hexbin","leaflet"],u):(h=typeof globalThis<"u"?globalThis:h||self,u(h["leaflet-hexbin"]={},h.d3,h["d3-hexbin"],h.L))})(this,function(h,u,T,j){"use strict";function E(s){const t=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(s){for(const i in s)if(i!=="default"){const o=Object.getOwnPropertyDescriptor(s,i);Object.defineProperty(t,i,o.get?o:{enumerable:!0,get:()=>s[i]})}}return t.default=s,Object.freeze(t)}const m=E(u),l=E(j);var y;(s=>{function t(){return{mouseover:function(p,n,a,d){m.select(p.parentElement).select("path.hexbin-hexagon").transition().duration(n.options.duration).attr("d",function(_){return n._hexLayout.hexagon(n.options.radius)})},mouseout:function(p,n,a,d){m.select(p.parentElement).select("path.hexbin-hexagon").transition().duration(n.options.duration).attr("d",function(_){return n._hexLayout.hexagon(n._scale.radius(n._fn.radiusValue.call(n,_)))})}}}s.resizeFill=t;function i(p=1.5){return{mouseover:function(n,a,d,f){m.select(n.parentElement).select("path.hexbin-hexagon").transition().duration(a.options.duration).attr("d",function(){return a._hexLayout.hexagon(a._scale.radius.range()[1]*p)})},mouseout:function(n,a,d,f){m.select(n.parentElement).select("path.hexbin-hexagon").transition().duration(a.options.duration).attr("d",L=>a._hexLayout.hexagon(a._scale.radius(a._fn.radiusValue.call(a,L))))}}}s.resizeScale=i;function o(p=[c()]){return{mouseover:function(n,a,d,f){p.forEach(_=>{_.mouseover(n,a,d,f)})},mouseout:function(n,a,d,f){p.forEach(_=>{_.mouseout(n,a,d,f)})}}}s.compound=o;function c(){return{mouseover:function(){},mouseout:function(){}}}s.none=c})(y||(y={}));const x=y;function w(s){return s instanceof l.LatLng||typeof s=="object"&&"lat"in s&&"lng"in s||Array.isArray(s)&&s.length===2&&typeof s[0]=="number"&&typeof s[1]=="number"}class S extends l.SVG{constructor(t){super(),this.options={radius:12,opacity:.6,duration:200,colorScaleExtent:[1,void 0],radiusScaleExtent:[1,void 0],opacityScaleExtent:[1,void 0],colorDomain:null,radiusDomain:null,colorRange:["#f7fbff","#08306b"],radiusRange:null,pointerEvents:"all",noRedraw:!1,...l.Renderer.prototype.options,...l.Layer.prototype.options},this._fn={lng:i=>l.latLng(this._accessor(i)).lng,lat:i=>l.latLng(this._accessor(i)).lat,colorValue:i=>i.length,radiusValue:i=>i.length,opacityValue:i=>i.length,fill:i=>{const o=this._fn.colorValue(i);return o!=null?this._scale.color(o):"none"}},this._scale={color:u.scaleLinear(),radius:u.scaleLinear(),opacity:u.scaleLinear()},this._dispatch=u.dispatch("mouseover","mouseout","click"),this._hoverHandler=x.none(),this._hexLayout=T.hexbin().radius(this.options.radius).x(({point:[i,o]})=>i).y(({point:[i,o]})=>o),this._data=Array(),this._tooltipOptions={},this.options={...this.options,...t},this._scale.color.range(this.options.colorRange).clamp(!0),this._scale.radius.range(this.options.radiusRange??[this.options.radius,this.options.radius]).clamp(!0),this._scale.opacity.range(typeof this.options.opacity=="number"?[this.options.opacity,this.options.opacity]:this.options.opacity).clamp(!0)}_accessor(t){return t}_initContainer(){super._initContainer(),this._d3Container=u.select(this._container).select("g")}onAdd(t){var i;return super.onAdd(t),this._map=t,(i=this._tooltip)==null||i.setLatLng([0,0]).addTo(t),t.on("moveend",this.redraw,this),this.redraw(),this}_project(t){const{x:i,y:o}=this._map.latLngToLayerPoint(t);return[i,o]}onRemove(t){return this._destroyContainer(),t.off("moveend",this.redraw,this),this}_destroyContainer(){u.select(this._container).remove()}redraw(){const t=this;if(!t._map)return;const i=t._data.map(n=>{const a=t._accessor(n),d=t._project(a);return{coord:a,point:d,data:n}}),o=this._d3Container.selectAll("g.hexbin").data([this._map.getZoom()],n=>n),p=o.enter().append("g").attr("class",function(n){return"hexbin zoom-"+n}).merge(o);o.exit().remove(),this._createHexagons(p,i)}_linearlySpace(t,i,o){const c=(i-t)/Math.max(o-1,1);return Array.from({length:o},(p,n)=>t+n*c)}_createHexagons(t,i){const o=this,c=o._map.getSize(),p=o._map.getBounds().pad(o.options.radius*2/Math.max(c.x,c.y)),n=o._hexLayout(i).filter(({x:e,y:r})=>p.contains(o._map.layerPointToLatLng(l.point(e,r)))),a=o._getExtent(n,o._fn.colorValue,o.options.colorScaleExtent),d=o._getExtent(n,o._fn.radiusValue,o.options.radiusScaleExtent),f=o._getExtent(n,o._fn.opacityValue,o.options.opacityScaleExtent),_=this.options.colorDomain??o._linearlySpace(a[0],a[1],o._scale.color.range().length),L=this.options.radiusDomain||d;o._scale.color.domain(_),o._scale.radius.domain(L),o._scale.opacity.domain(f);const b=t.selectAll("g.hexbin-container").data(n,({x:e,y:r})=>`${e}:${r}`);b.select("path.hexbin-hexagon").transition().duration(o.options.duration).attr("fill",o._fn.fill.bind(o)).attr("fill-opacity",e=>o._scale.opacity(o._fn.opacityValue.call(o,e))).attr("stroke-opacity",e=>o._scale.opacity(o._fn.opacityValue.call(o,e))).attr("d",e=>o._hexLayout.hexagon(o._scale.radius(o._fn.radiusValue.call(o,e))));const v=b.enter().append("g").attr("class","hexbin-container").style("pointer-events",o.options.pointerEvents);v.on("mouseover",function(e,r){u.select(this).raise()});const V=v.append("path").attr("class","hexbin-hexagon").attr("transform",({x:e,y:r})=>`translate(${e},${r})`).attr("d",()=>o._hexLayout.hexagon(o._scale.radius.range()[0])).attr("fill",o._fn.fill.bind(o)).attr("fill-opacity",.01).attr("stroke-opacity",.01).style("pointer-events","all");V.transition().duration(o.options.duration).attr("fill-opacity",e=>o._scale.opacity(o._fn.opacityValue.call(o,e))).attr("stroke-opacity",e=>o._scale.opacity(o._fn.opacityValue.call(o,e))).attr("d",e=>o._hexLayout.hexagon(o._scale.radius(o._fn.radiusValue.call(o,e)))).style("pointer-events","all"),v.append("path").attr("class","hexbin-grid").attr("transform",({x:e,y:r})=>`translate(${e},${r})`).attr("d",()=>o._hexLayout.hexagon(o.options.radius)).attr("fill","none").attr("stroke","none"),V.on("mouseover",function(e,r){var g,O;(g=o._tooltipOptions)!=null&&g.content&&((O=o._tooltip)==null||O.setContent(typeof o._tooltipOptions.content=="function"?o._tooltipOptions.content(r):o._tooltipOptions.content).setLatLng(o._map.layerPointToLatLng(l.point(r.x,r.y))).openOn(o._map)),o._hoverHandler.mouseover(this,o,e,r),o._dispatch.call("mouseover",this,r,o,e),this.classList.add("hover")}).on("mouseout",function(e,r){var g;(g=o._tooltip)==null||g.close(),o._hoverHandler.mouseout(this,o,e,r),o._dispatch.call("mouseout",this,r,o,e),this.classList.remove("hover")}).on("click",function(e,r){const g=o._map.layerPointToLatLng(l.point(r.x,r.y));o._dispatch.call("click",this,r,g,o,e),e.stopPropagation()});const R=b.exit();R.select("path.hexbin-hexagon").transition().duration(o.options.duration).attr("fill-opacity",0).attr("stroke-opacity",0).attr("d",e=>o._hexLayout.hexagon(0)),R.transition().duration(o.options.duration).remove()}_getExtent(t,i,o){let c=u.extent(t,i.bind(this));return(c[0]===void 0||c[1]===void 0)&&(c=[0,0]),o[0]!=null&&(c[0]=o[0]),o[1]!=null&&(c[1]=o[1]),c}radius(t){return t===void 0?this.options.radius:(this.options.radius=t,this._hexLayout.radius(t),this.options.radiusRange==null&&this._scale.radius.range([this.options.radius,this.options.radius]).clamp(!0),this)}opacity(t){return t===void 0?this.options.opacity:(this.options.opacity=t,this._scale.opacity.range(typeof t=="number"?[t,t]:t).clamp(!0),this)}duration(t){return t===void 0?this.options.duration:(this.options.duration=t,this)}colorScaleExtent(t){return t===void 0?this.options.colorScaleExtent:(this.options.colorScaleExtent=t,this)}radiusScaleExtent(t){return t===void 0?this.options.radiusScaleExtent:(this.options.radiusScaleExtent=t,this)}opacityScaleExtent(t){return t===void 0?this.options.opacityScaleExtent:(this.options.opacityScaleExtent=t,this)}colorRange(t){return t===void 0?this.options.colorRange:(this.options.colorRange=t,this._scale.color.range(t),this)}radiusRange(t){return t===void 0?this.options.radiusRange:(this.options.radiusRange=t,this._scale.radius.range(this.options.radiusRange??[this.options.radius,this.options.radius]).clamp(!0),this)}colorScale(t){return t===void 0?this._scale.color:(this._scale.color=t,this)}radiusScale(t){return t===void 0?this._scale.radius:(this._scale.radius=t,this)}lng(t){return t===void 0?this._fn.lng:(this._fn.lng=t,this)}lat(t){return t===void 0?this._fn.lat:(this._fn.lat=t,this)}colorValue(t){return t===void 0?this._fn.colorValue:(this._fn.colorValue=t,this)}radiusValue(t){return t===void 0?this._fn.radiusValue:(this._fn.radiusValue=t,this)}fill(t){return t===void 0?this._fn.fill:(this._fn.fill=t,this)}data(t,i){return t===void 0?this._data:(!w(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)}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=l.tooltip(t.options),this}getTooltip(){return this._tooltip}bindTooltip(t,i){return t instanceof l.Tooltip?(this._tooltip=t,this._map&&this._tooltip.setLatLng([0,0]).addTo(this._map)):this._tooltip=l.tooltip(i).setContent(t),this}unbindTooltip(){var t;return(t=this._tooltip)==null||t.remove(),this._tooltip=void 0,this}getLatLngs(){const t=this;return this._data.map(function(i){return l.latLng(t._fn.lat(i),t._fn.lng(i))})}toGeoJSON(){return l.GeoJSON.getFeature(this,{type:"MultiPoint",coordinates:l.GeoJSON.latLngsToCoords(this.getLatLngs(),0)})}}function H(s){return new S(s)}h.HexbinHoverHandler=x,h.HexbinLayer=S,h.hexbinLayer=H,Object.defineProperty(h,Symbol.toStringTag,{value:"Module"})});
|
1
|
+
(function(h,u){typeof exports=="object"&&typeof module<"u"?u(exports,require("d3"),require("d3-hexbin"),require("leaflet")):typeof define=="function"&&define.amd?define(["exports","d3","d3-hexbin","leaflet"],u):(h=typeof globalThis<"u"?globalThis:h||self,u(h["leaflet-hexbin"]={},h.d3,h["d3-hexbin"],h.L))})(this,function(h,u,O,w){"use strict";function S(s){const t=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(s){for(const i in s)if(i!=="default"){const o=Object.getOwnPropertyDescriptor(s,i);Object.defineProperty(t,i,o.get?o:{enumerable:!0,get:()=>s[i]})}}return t.default=s,Object.freeze(t)}const m=S(u),c=S(w);var y;(s=>{function t(){return{mouseover:function(p,e,r,d){m.select(p.parentElement).select("path.hexbin-hexagon").transition().duration(e.options.duration).attr("d",function(f){return e._hexLayout.hexagon(e.options.radius)})},mouseout:function(p,e,r,d){m.select(p.parentElement).select("path.hexbin-hexagon").transition().duration(e.options.duration).attr("d",function(f){return e._hexLayout.hexagon(e.radiusScale()(e.radiusValue()(f)))})}}}s.resizeFill=t;function i(p=1.5){return{mouseover:function(e,r,d,_){m.select(e.parentElement).select("path.hexbin-hexagon").transition().duration(r.options.duration).attr("d",function(){return r._hexLayout.hexagon(r.radiusScale().range()[1]*p)})},mouseout:function(e,r,d,_){m.select(e.parentElement).select("path.hexbin-hexagon").transition().duration(r.options.duration).attr("d",L=>r._hexLayout.hexagon(r.radiusScale()(r.radiusValue()(L))))}}}s.resizeScale=i;function o(p=[l()]){return{mouseover:function(e,r,d,_){p.forEach(f=>{f.mouseover(e,r,d,_)})},mouseout:function(e,r,d,_){p.forEach(f=>{f.mouseout(e,r,d,_)})}}}s.compound=o;function l(){return{mouseover:function(){},mouseout:function(){}}}s.none=l})(y||(y={}));const x=y;function H(s){return s instanceof c.LatLng||typeof s=="object"&&"lat"in s&&"lng"in s||Array.isArray(s)&&s.length===2&&typeof s[0]=="number"&&typeof s[1]=="number"}const j=(s,t)=>{let i;return function(...o){clearTimeout(i),i=setTimeout(()=>{s(...o)},t)}};class E extends c.SVG{constructor(t){super(),this.options={radius:12,opacity:.6,duration:200,colorScaleExtent:[1,void 0],radiusScaleExtent:[1,void 0],opacityScaleExtent:[1,void 0],colorDomain:null,radiusDomain:null,colorRange:["#f7fbff","#08306b"],radiusRange:null,pointerEvents:"all",noRedraw:!1,...c.Renderer.prototype.options,...c.Layer.prototype.options},this._fn={colorValue:i=>i.length,radiusValue:i=>i.length,opacityValue:i=>i.length,fill:i=>{const o=this._fn.colorValue(i);return o!=null?this._scale.color(o):"none"}},this._scale={color:u.scaleLinear(),radius:u.scaleLinear(),opacity:u.scaleLinear()},this._dispatch=u.dispatch("mouseover","mouseout","click"),this._hoverHandler=x.none(),this._hexLayout=O.hexbin().radius(this.options.radius).x(({point:{x:i}})=>i).y(({point:{y:i}})=>i),this._data=Array(),this._tooltipOptions={},this.options={...this.options,...t},this._scale.color.range(this.options.colorRange).clamp(!0),this._scale.radius.range(this.options.radiusRange??[this.options.radius,this.options.radius]).clamp(!0),this._scale.opacity.range(typeof this.options.opacity=="number"?[this.options.opacity,this.options.opacity]:this.options.opacity).clamp(!0)}_accessor(t){return t}_initContainer(){super._initContainer(),this._d3Container=u.select(this._container).select("g")}onAdd(t){var i;return super.onAdd(t),this._map=t,(i=this._tooltip)==null||i.setLatLng([0,0]).addTo(t),t.on("moveend",j(()=>this.redraw(),100)),this.redraw(),this}onRemove(t){return this._destroyContainer(),t.off("moveend",this.redraw,this),this}_destroyContainer(){u.select(this._container).remove()}redraw(){const t=this;if(!t._map)return;const i=t._data.map(e=>{const r=t._accessor(e),d=t._map.latLngToLayerPoint(r);return{coord:r,point:d,data:e}}),o=this._d3Container.selectAll("g.hexbin").data([this._map.getZoom()],e=>e),p=o.enter().append("g").attr("class",function(e){return"hexbin zoom-"+e}).merge(o);o.exit().remove(),this._createHexagons(p,i)}_linearlySpace(t,i,o){const l=(i-t)/Math.max(o-1,1);return Array.from({length:o},(p,e)=>t+e*l)}_createHexagons(t,i){const o=this,l=o._map.getSize(),p=o._map.getBounds().pad(o.options.radius*2/Math.max(l.x,l.y)),e=o._hexLayout(i).filter(({x:n,y:a})=>p.contains(o._map.layerPointToLatLng(c.point(n,a)))),r=o._getExtent(e,o._fn.colorValue,o.options.colorScaleExtent),d=o._getExtent(e,o._fn.radiusValue,o.options.radiusScaleExtent),_=o._getExtent(e,o._fn.opacityValue,o.options.opacityScaleExtent),f=this.options.colorDomain??o._linearlySpace(r[0],r[1],o._scale.color.range().length),L=this.options.radiusDomain||d;o._scale.color.domain(f),o._scale.radius.domain(L),o._scale.opacity.domain(_);const b=t.selectAll("g.hexbin-container").data(e,({x:n,y:a})=>`${n}:${a}`);b.select("path.hexbin-hexagon").transition().duration(o.options.duration).attr("fill",o._fn.fill.bind(o)).attr("fill-opacity",n=>o._scale.opacity(o._fn.opacityValue.call(o,n))).attr("stroke-opacity",n=>o._scale.opacity(o._fn.opacityValue.call(o,n))).attr("d",n=>o._hexLayout.hexagon(o._scale.radius(o._fn.radiusValue.call(o,n))));const v=b.enter().append("g").attr("class","hexbin-container").style("pointer-events",o.options.pointerEvents);v.on("mouseover",function(n,a){u.select(this).raise()});const V=v.append("path").attr("class","hexbin-hexagon").attr("transform",({x:n,y:a})=>`translate(${n},${a})`).attr("d",()=>o._hexLayout.hexagon(o._scale.radius.range()[0])).attr("fill",o._fn.fill.bind(o)).attr("fill-opacity",.01).attr("stroke-opacity",.01).style("pointer-events","all");V.transition().duration(o.options.duration).attr("fill-opacity",n=>o._scale.opacity(o._fn.opacityValue.call(o,n))).attr("stroke-opacity",n=>o._scale.opacity(o._fn.opacityValue.call(o,n))).attr("d",n=>o._hexLayout.hexagon(o._scale.radius(o._fn.radiusValue.call(o,n)))).style("pointer-events","all"),v.append("path").attr("class","hexbin-grid").attr("transform",({x:n,y:a})=>`translate(${n},${a})`).attr("d",()=>o._hexLayout.hexagon(o.options.radius)).attr("fill","none").attr("stroke","none"),V.on("mouseover",function(n,a){var g,R;(g=o._tooltipOptions)!=null&&g.content&&((R=o._tooltip)==null||R.setContent(typeof o._tooltipOptions.content=="function"?o._tooltipOptions.content(a):o._tooltipOptions.content).setLatLng(o._map.layerPointToLatLng(c.point(a.x,a.y))).openOn(o._map)),o._hoverHandler.mouseover(this,o,n,a),o._dispatch.call("mouseover",this,a,o,n),this.classList.add("hover")}).on("mouseout",function(n,a){var g;(g=o._tooltip)==null||g.close(),o._hoverHandler.mouseout(this,o,n,a),o._dispatch.call("mouseout",this,a,o,n),this.classList.remove("hover")}).on("click",function(n,a){const g=o._map.layerPointToLatLng(c.point(a.x,a.y));o._dispatch.call("click",this,a,g,o,n),n.stopPropagation()});const T=b.exit();T.select("path.hexbin-hexagon").transition().duration(o.options.duration).attr("fill-opacity",0).attr("stroke-opacity",0).attr("d",n=>o._hexLayout.hexagon(0)),T.transition().duration(o.options.duration).remove()}_getExtent(t,i,o){let l=u.extent(t,i.bind(this));return(l[0]===void 0||l[1]===void 0)&&(l=[0,0]),o[0]!=null&&(l[0]=o[0]),o[1]!=null&&(l[1]=o[1]),l}radius(t){return t===void 0?this.options.radius:(this.options.radius=t,this._hexLayout.radius(t),this.options.radiusRange==null&&this._scale.radius.range([this.options.radius,this.options.radius]).clamp(!0),this)}opacity(t){return t===void 0?this.options.opacity:(this.options.opacity=t,this._scale.opacity.range(typeof t=="number"?[t,t]:t).clamp(!0),this)}duration(t){return t===void 0?this.options.duration:(this.options.duration=t,this)}colorScaleExtent(t){return t===void 0?this.options.colorScaleExtent:(this.options.colorScaleExtent=t,this)}radiusScaleExtent(t){return t===void 0?this.options.radiusScaleExtent:(this.options.radiusScaleExtent=t,this)}opacityScaleExtent(t){return t===void 0?this.options.opacityScaleExtent:(this.options.opacityScaleExtent=t,this)}colorRange(t){return t===void 0?this.options.colorRange:(this.options.colorRange=t,this._scale.color.range(t),this)}radiusRange(t){return t===void 0?this.options.radiusRange:(this.options.radiusRange=t,this._scale.radius.range(this.options.radiusRange??[this.options.radius,this.options.radius]).clamp(!0),this)}colorScale(t){return t===void 0?this._scale.color:(this._scale.color=t,this)}radiusScale(t){return t===void 0?this._scale.radius:(this._scale.radius=t,this)}colorValue(t){return t===void 0?this._fn.colorValue:(this._fn.colorValue=t,this)}radiusValue(t){return t===void 0?this._fn.radiusValue:(this._fn.radiusValue=t,this)}fill(t){return t===void 0?this._fn.fill:(this._fn.fill=t,this)}data(t,i){return t===void 0?this._data:(!H(t[0])&&!i&&console.error("Leaflet hexbin: data does not appear to be an array of L.LatLngExpression. You must provide an accessor function to convert the data to L.LatLngExpression"),this._data=t??[],this._accessor=i??(o=>o),this.options.noRedraw||this.redraw(),this)}accessor(){return this._accessor}dispatch(){return this._dispatch}hoverHandler(t){return t===void 0?this._hoverHandler:(this._hoverHandler=t??x.none(),this.options.noRedraw||this.redraw(),this)}tooltip(t){return this._tooltipOptions=t,this._tooltip?this._tooltip.options=t.options??{}:this._tooltip=c.tooltip(t.options),this}getTooltip(){return this._tooltip}bindTooltip(t,i){return t instanceof c.Tooltip?(this._tooltip=t,this._map&&this._tooltip.setLatLng([0,0]).addTo(this._map)):this._tooltip=c.tooltip(i).setContent(t),this}unbindTooltip(){var t;return(t=this._tooltip)==null||t.remove(),this._tooltip=void 0,this}getLatLngs(){return this._data.map(t=>c.latLng(this._accessor(t)))}toGeoJSON(){return c.GeoJSON.getFeature(this,{type:"MultiPoint",coordinates:c.GeoJSON.latLngsToCoords(this.getLatLngs(),0)})}}function k(s){return new E(s)}h.HexbinHoverHandler=x,h.HexbinLayer=E,h.hexbinLayer=k,Object.defineProperty(h,Symbol.toStringTag,{value:"Module"})});
|
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 * 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<[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 noRedraw: false,\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 if (!this.options.noRedraw) 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 if (!this.options.noRedraw) 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\nconst debounce = <T extends unknown[]>(\n callback: (...args: T) => void,\n delay: number,\n) => {\n let timeoutTimer: ReturnType<typeof setTimeout>;\n\n return function (...args: T) {\n clearTimeout(timeoutTimer);\n\n timeoutTimer = setTimeout(() => {\n callback(...args);\n }, delay);\n };\n};\n\n\n/**\n * A layer for displaying binned data in a hexagon grid on a Leaflet map.\n * Extends L.SVG to take advantage of built-in zoom animations.\n */\nexport class HexbinLayer<Data = L.LatLngExpression> extends L.SVG {\n /**\n * Default options for the hexbin layer\n */\n options: Required<HexbinLayerConfig> & L.RendererOptions = {\n radius: 12,\n opacity: 0.6,\n duration: 200,\n\n colorScaleExtent: [1, undefined],\n radiusScaleExtent: [1, undefined],\n opacityScaleExtent: [1, undefined],\n colorDomain: null,\n radiusDomain: null,\n colorRange: ['#f7fbff', '#08306b'],\n radiusRange: null,\n\n pointerEvents: 'all',\n noRedraw: false,\n // Handle parent default options\n // ...L.SVG.prototype.options,\n ...L.Renderer.prototype.options,\n ...L.Layer.prototype.options\n }\n\n /**\n * Internal functions to access the data\n */\n protected _fn = {\n colorValue: (d: HexbinData<Data>[]) => d.length,\n radiusValue: (d: HexbinData<Data>[]) => d.length,\n opacityValue: (d: HexbinData<Data>[]) => d.length,\n fill: (d: HexbinData<Data>[]) => {\n const val = this._fn.colorValue(d);\n return (null != val) ? this._scale.color(val) : 'none';\n }\n }\n /**\n * D3 scales used for the hexbin layer\n */\n _scale = {\n color: scaleLinear<string, string>(),\n radius: scaleLinear(),\n opacity: scaleLinear()\n };\n\n // Set up the Dispatcher for managing events and callbacks\n protected _dispatch = dispatch<SVGPathElement>('mouseover', 'mouseout', 'click');\n\n // Set up the default hover handler\n protected _hoverHandler: HexbinHoverHandler<Data> = HexbinHoverHandler.none();\n\n // Create the hex layout\n _hexLayout = hexbin<HexbinData<Data>>()\n .radius(this.options.radius)\n .x(({ point: { x } }) => x)\n .y(({ point: { y } }) => y);\n\n // Initialize the data array to be empty\n protected _data = Array<Data>()\n\n\n declare protected _map: L.Map;\n\n protected _tooltipOptions: TooltipOptions<Data> = {};\n declare protected _tooltip: L.Tooltip | undefined;\n\n // declare _container: SVGElementTagNameMap['svg'];\n\n // declare _container: HTMLElement;\n declare protected _d3Container: d3.Selection<SVGGElement, unknown, null, undefined>;\n\n public constructor(options?: HexbinLayerConfig) {\n super()\n // L.SVG.prototype.initialize.call(this, options);\n this.options = { ...this.options, ...options };\n this._scale.color\n .range(this.options.colorRange)\n .clamp(true);\n\n this._scale.radius\n .range(this.options.radiusRange ?? [this.options.radius, this.options.radius])\n .clamp(true);\n\n this._scale.opacity\n .range(\n typeof this.options.opacity === 'number'\n ? [this.options.opacity, this.options.opacity]\n : this.options.opacity\n ).clamp(true);\n\n };\n\n protected _accessor(d: Data) {\n return d as L.LatLngExpression;\n }\n\n /**\n * Create the SVG container for the hexbins\n * @private\n */\n _initContainer() {\n super._initContainer();\n this._d3Container = select(this._container).select<SVGElementTagNameMap['g']>('g');\n }\n /**\n * Callback made by Leaflet when the layer is added to the map\n * @param map Reference to the map to which this layer has been added\n */\n onAdd(map: L.Map): this {\n // Call super.onAdd to properly initialize the SVG pane\n super.onAdd(map)\n\n // Store a reference to the map for later use\n this._map = map;\n this._tooltip?.setLatLng([0, 0]).addTo(map);\n // Redraw on moveend\n map.on('moveend', debounce(() => this.redraw(), 100));\n // Initial draw\n this.redraw();\n return this\n }\n\n /**\n * Callback made by Leaflet when the layer is removed from the map\n * @param map Reference to the map from which this layer is being removed\n */\n onRemove(map: L.Map): this {\n // Destroy the svg container\n this._destroyContainer();\n // Remove events\n map.off('moveend', this.redraw, this);\n return this\n }\n\n /**\n * Clean up the svg container\n */\n protected _destroyContainer() {\n select(this._container).remove();\n }\n\n /**\n * (Re)draws the hexbins data on the container\n */\n public redraw() {\n const that = this;\n\n if (!that._map) return\n\n // Generate the mapped version of the data\n const data = that._data.map<HexbinData<Data>>((d: Data) => {\n const coord = that._accessor(d)\n const point = that._map.latLngToLayerPoint(coord);\n return { coord: coord, point, data: d };\n });\n\n // Select the hex group for the current zoom level. This has\n // the effect of recreating the group if the zoom level has changed\n const join = this._d3Container.selectAll<SVGGElement, number>('g.hexbin')\n .data<number>([this._map.getZoom()], (d) => d);\n\n // enter\n const enter = join.enter().append('g')\n .attr('class', function (d) { return 'hexbin zoom-' + d; });\n\n // enter + update\n const enterUpdate = enter.merge(join);\n\n // exit\n join.exit().remove();\n\n // add the hexagons to the select\n this._createHexagons(enterUpdate, data);\n\n }\n\n protected _linearlySpace(from: number, to: number, length: number): number[] {\n const step = (to - from) / Math.max(length - 1, 1);\n return Array.from({ length }, (_, i) => from + (i * step));\n }\n\n _createHexagons(g: d3.Selection<SVGGElement, number, SVGGElement, unknown>, data: HexbinData<Data>[]) {\n const thisLayer = this;\n\n // Create the bins using the hexbin layout\n\n // Generate the map bounds (to be used to filter the hexes to what is visible)\n const size = thisLayer._map.getSize();\n const bounds = thisLayer._map.getBounds().pad(thisLayer.options.radius * 2 / Math.max(size.x, size.y));\n\n const bins = thisLayer._hexLayout(data).filter(\n ({ x, y }) => bounds.contains(thisLayer._map.layerPointToLatLng(L.point(x, y)))\n );\n\n // Derive the extents of the data values for each dimension\n const colorExtent = thisLayer._getExtent(bins, thisLayer._fn.colorValue, thisLayer.options.colorScaleExtent);\n const radiusExtent = thisLayer._getExtent(bins, thisLayer._fn.radiusValue, thisLayer.options.radiusScaleExtent);\n const opacityExtent = thisLayer._getExtent(bins, thisLayer._fn.opacityValue, thisLayer.options.opacityScaleExtent);\n\n // Match the domain cardinality to that of the color range, to allow for a polylinear scale\n const colorDomain = this.options.colorDomain\n ?? thisLayer._linearlySpace(\n colorExtent[0],\n colorExtent[1],\n thisLayer._scale.color.range().length\n );\n const radiusDomain = this.options.radiusDomain || radiusExtent;\n\n // Set the scale domains\n thisLayer._scale.color.domain(colorDomain);\n thisLayer._scale.radius.domain(radiusDomain);\n thisLayer._scale.opacity.domain(opacityExtent);\n\n\n /*\n * Join\n * Join the Hexagons to the data\n * Use a deterministic id for tracking bins based on position\n */\n const join = g.selectAll<SVGGElement, HexbinBin<HexbinData<Data>>>('g.hexbin-container')\n .data(bins, ({ x, y }) => `${x}:${y}`);\n\n\n /*\n * Update\n * Set the fill and opacity on a transition\n * opacity is re-applied in case the enter transition was cancelled\n * the path is applied as well to resize the bins\n */\n join.select<SVGPathElement>('path.hexbin-hexagon')\n .transition().duration(thisLayer.options.duration)\n .attr('fill', thisLayer._fn.fill.bind(thisLayer))\n .attr('fill-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('stroke-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('d', (d) => {\n return thisLayer._hexLayout.hexagon(thisLayer._scale.radius(thisLayer._fn.radiusValue.call(thisLayer, d)));\n });\n\n\n /*\n * Enter\n * Establish the path, size, fill, and the initial opacity\n * Transition to the final opacity and size\n */\n const container = join.enter().append('g').attr('class', 'hexbin-container')\n .style('pointer-events', thisLayer.options.pointerEvents);\n\n\n container.on('mouseover', function (this: SVGGElement, d: MouseEvent, i) {\n // Bring container to foreground by re-appending it to the DOM\n select<SVGGElement, HexbinBin<HexbinData<Data>>>(this).raise();\n })\n\n const hexagons = container.append('path').attr('class', 'hexbin-hexagon')\n .attr('transform', ({ x, y }) => `translate(${x},${y})`)\n .attr('d', () => thisLayer._hexLayout.hexagon(thisLayer._scale.radius.range()[0]))\n // .attr('d', (data, length) => thisLayer._hexLayout.hexagon(thisLayer._scale.radius(data.length)))\n .attr('fill', thisLayer._fn.fill.bind(thisLayer))\n .attr('fill-opacity', 0.01)\n .attr('stroke-opacity', 0.01)\n .style('pointer-events', 'all');\n\n hexagons.transition().duration(thisLayer.options.duration)\n .attr('fill-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('stroke-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('d', (d) => thisLayer._hexLayout.hexagon(thisLayer._scale.radius(thisLayer._fn.radiusValue.call(thisLayer, d))))\n .style('pointer-events', 'all');\n\n // Grid\n const gridEnter = container.append('path').attr('class', 'hexbin-grid')\n .attr('transform', ({ x, y }) => `translate(${x},${y})`)\n .attr('d', () => thisLayer._hexLayout.hexagon(thisLayer.options.radius))\n .attr('fill', 'none')\n .attr('stroke', 'none')\n\n\n // Grid enter-update\n hexagons.on('mouseover', function (this: SVGPathElement, ev: MouseEvent, data) {\n if (thisLayer._tooltipOptions?.content) {\n thisLayer._tooltip\n ?.setContent(\n typeof thisLayer._tooltipOptions.content === \"function\"\n ? thisLayer._tooltipOptions.content(data)\n : thisLayer._tooltipOptions.content\n )\n .setLatLng(\n thisLayer._map.layerPointToLatLng(L.point(data.x, data.y))\n )\n .openOn(thisLayer._map);\n }\n thisLayer._hoverHandler.mouseover(this, thisLayer, ev, data);\n thisLayer._dispatch.call('mouseover', this, data, thisLayer, ev);\n this.classList.add('hover')\n })\n .on('mouseout', function (this: SVGPathElement, ev: MouseEvent, data) {\n thisLayer._tooltip?.close()\n thisLayer._hoverHandler.mouseout(this, thisLayer, ev, data);\n thisLayer._dispatch.call('mouseout', this, data, thisLayer, ev);\n this.classList.remove('hover')\n })\n .on('click', function (this, ev: MouseEvent, data) {\n const latLng = thisLayer._map.layerPointToLatLng(L.point(data.x, data.y));\n thisLayer._dispatch.call('click', this, data, latLng, thisLayer, ev);\n ev.stopPropagation()\n });\n\n\n // Exit\n const exit = join.exit();\n\n exit.select('path.hexbin-hexagon')\n .transition().duration(thisLayer.options.duration)\n .attr('fill-opacity', 0)\n .attr('stroke-opacity', 0)\n .attr('d', (d) => thisLayer._hexLayout.hexagon(0));\n\n exit.transition().duration(thisLayer.options.duration).remove();\n\n }\n\n _getExtent(\n bins: HexbinBin<HexbinData<Data>>[],\n valueFn: (d: HexbinBin<HexbinData<Data>>) => number,\n scaleExtent: [number, number | undefined]\n ): [number, number] {\n\n // Determine the extent of the values\n let ext = extent<HexbinBin<HexbinData<Data>>, number>(bins, valueFn.bind(this));\n // If either's null, initialize them to 0\n if (ext[0] === undefined || ext[1] === undefined) {\n ext = [0, 0]\n }\n\n // Now apply the optional clipping of the extent\n if (undefined != scaleExtent[0]) ext[0] = scaleExtent[0];\n if (undefined != scaleExtent[1]) ext[1] = scaleExtent[1];\n\n return ext as [number, number]\n }\n\n // ------------------------------------\n // Public API\n // ------------------------------------\n\n /**\n * Get or set the radius of the hexagon grid cells\n */\n radius(): number;\n radius(v: number): this;\n radius(v?: number): this | number {\n if (v === undefined) return this.options.radius;\n\n this.options.radius = v;\n this._hexLayout.radius(v);\n\n if (null == this.options.radiusRange) {\n this._scale.radius.range([this.options.radius, this.options.radius]).clamp(true);\n }\n\n return this;\n }\n\n\n /**\n * Get or set the opacity of the hexbin layer\n * @param v The opacity value to set. If an array is provided, the first element is the minimum opacity and the second is the maximum.\n */\n opacity(): number | [number, number];\n opacity(v: number | [number, number]): this;\n opacity(v?: number | [number, number]): this | number | [number, number] {\n if (v === undefined) return this.options.opacity\n this.options.opacity = v;\n this._scale.opacity.range(typeof v === 'number' ? [v, v] : v).clamp(true);\n\n return this;\n }\n\n /**\n * Get or set the duration of transition animations\n */\n duration(): number;\n duration(v: number): this;\n duration(v?: number): this | number {\n if (v === undefined) return this.options.duration\n this.options.duration = v\n\n return this;\n }\n\n /**\n * Get or set the color scale domain extent\n * @param v The color scale extent to set. If an array is provided, the first element is the minimum extent and the second is the maximum. This means that for the purpose of color interpolation, the domain will be clipped to this extent, i.e. values below the minimum will be treated as the minimum, and values above the maximum will be treated as the maximum.\n */\n colorScaleExtent(): [number, number | undefined];\n colorScaleExtent(v: [number, number | undefined]): this;\n colorScaleExtent(v?: [number, number | undefined]): this | [number, number | undefined] {\n if (v === undefined) { return this.options.colorScaleExtent; }\n this.options.colorScaleExtent = v;\n\n return this;\n }\n\n /**\n * Get or set the radius scale domain extent\n * @param v The radius scale extent to set. If an array is provided, the first element is the minimum extent and the second is the maximum. This means that for the purpose of radius interpolation, the domain will be clipped to this extent, i.e. values below the minimum will be treated as the minimum, and values above the maximum will be treated as the maximum.\n */\n radiusScaleExtent(): [number, number | undefined];\n radiusScaleExtent(v: [number, number | undefined]): this;\n radiusScaleExtent(v?: [number, number | undefined]): this | [number, number | undefined] {\n if (v === undefined) { return this.options.radiusScaleExtent; }\n this.options.radiusScaleExtent = v;\n\n return this;\n }\n\n /**\n * Get or set the opacity scale domain extent\n * @param v The opacity scale extent to set. If an array is provided, the first element is the minimum extent and the second is the maximum. This means that for the purpose of opacity interpolation, the domain will be clipped to this extent, i.e. values below the minimum will be treated as the minimum, and values above the maximum will be treated as the maximum.\n */\n opacityScaleExtent(): [number, number | undefined];\n opacityScaleExtent(v: [number, number | undefined]): this;\n opacityScaleExtent(v?: [number, number | undefined]): this | [number, number | undefined] {\n if (v === undefined) { return this.options.opacityScaleExtent; }\n this.options.opacityScaleExtent = v;\n\n return this;\n }\n\n\n /**\n * Get or set the color scale range\n * @param v The color range to set. Colors will be interpolated between all provided colors.\n */\n colorRange(): string[];\n colorRange(v: string[]): this;\n colorRange(v?: string[]): this | string[] {\n if (v === undefined) { return this.options.colorRange; }\n this.options.colorRange = v;\n this._scale.color.range(v);\n\n return this;\n }\n\n /**\n * Get or set the radius scale range\n * @param v The min and max radius range to set. If null, the range will be set to the hexagon grid cell radius value.\n */\n radiusRange(): [number, number] | null;\n radiusRange(v: [number, number] | null): this;\n radiusRange(v?: [number, number] | null): this | [number, number] | null {\n if (v === undefined) { return this.options.radiusRange; }\n this.options.radiusRange = v;\n this._scale.radius.range(this.options.radiusRange ?? [this.options.radius, this.options.radius]).clamp(true);\n\n return this;\n }\n\n /**\n * Get or set the color scale domain\n */\n colorScale(): d3.ScaleLinear<string, string>;\n colorScale(v: d3.ScaleLinear<string, string>): this;\n colorScale(v?: d3.ScaleLinear<string, string>) {\n if (v === undefined) return this._scale.color;\n this._scale.color = v;\n return this;\n }\n\n /**\n * Get or set the radius scale domain\n */\n radiusScale(): d3.ScaleLinear<number, number>;\n radiusScale(v: d3.ScaleLinear<number, number>): this;\n radiusScale(v?: d3.ScaleLinear<number, number>): this | d3.ScaleLinear<number, number> {\n if (v === undefined) return this._scale.radius\n this._scale.radius = v;\n return this;\n }\n\n /**\n * Get or set the value mapper for the color scale\n * @param v The value mapper to set. This function should accept an array of hexbin data and return a number to be used for color interpolation.\n * @default the length of the data in the hexbin\n */\n colorValue(): (d: HexbinData<Data>[]) => number;\n colorValue(v: (d: HexbinData<Data>[]) => number): this;\n colorValue(v?: (d: HexbinData<Data>[]) => number) {\n if (v === undefined) { return this._fn.colorValue; }\n this._fn.colorValue = v;\n\n return this;\n }\n\n /**\n * Get or set the value mapper for the radius scale\n * @param v The value mapper to set. This function should return a number for each bin, which will be used to determine the radius of the hexagon.\n * @default the length of the data in the hexbin\n */\n radiusValue(): (d: HexbinData<Data>[]) => number;\n radiusValue(v: (d: HexbinData<Data>[]) => number): this;\n radiusValue(v?: (d: HexbinData<Data>[]) => number) {\n if (v === undefined) { return this._fn.radiusValue; }\n this._fn.radiusValue = v;\n\n return this;\n }\n\n /**\n * Get or set the value mapper for the fill color of the hexbins\n * @param v The value mapper to set. This function should return a string to be used as the fill color for the hexbin.\n * @default a color interpolated from the color scale based on the value returned by the colorValue function\n */\n fill(): (d: HexbinData<Data>[]) => string;\n fill(v: (d: HexbinData<Data>[]) => string): this;\n fill(v?: (d: HexbinData<Data>[]) => string) {\n if (v === undefined) { return this._fn.fill; }\n this._fn.fill = v;\n\n return this;\n }\n\n /**\n * Get or set the data to be binned by the hexbin layer.\n * Triggers a redraw of the hexbins when set.\n * @param v The data to set. This should be an array of data to be binned.\n * @param accessor An optional function to convert the data into a LatLngExpression. If not provided, the data is assumed to be an array of LatLngExpressions.\n */\n data(): Data[];\n data(v: Data extends L.LatLngExpression ? Data[] : never): this;\n data(v: Data[], accessor?: (d: Data) => L.LatLngExpression): this;\n\n // Implementation\n data(v?: Data[] | L.LatLngExpression[], accessor?: (d: Data) => L.LatLngExpression): this | Data[] {\n if (v === undefined) {\n return this._data;\n }\n\n if (!isLatLngExpression(v[0]) && !accessor) {\n console.error(\"Leaflet hexbin: data does not appear to be an array of L.LatLngExpression. You must provide an accessor function to convert the data to L.LatLngExpression\");\n }\n\n this._data = v as Data[] ?? []\n this._accessor = accessor ?? ((d: Data) => d as L.LatLngExpression)\n\n if (!this.options.noRedraw) this.redraw();\n return this;\n }\n\n accessor(): (d: Data) => L.LatLngExpression {\n return this._accessor;\n }\n\n /*\n * Getter for the D3 event dispatcher\n */\n dispatch() { return this._dispatch }\n\n /**\n * Get or set the hover handler for the hexbin layer.\n */\n hoverHandler(): HexbinHoverHandler<Data>;\n hoverHandler(v: HexbinHoverHandler<Data>): this;\n hoverHandler(v?: HexbinHoverHandler<Data>): this | HexbinHoverHandler<Data> {\n if (v === undefined) { return this._hoverHandler; }\n this._hoverHandler = (null != v) ? v : HexbinHoverHandler.none();\n\n if (!this.options.noRedraw) this.redraw();\n\n return this;\n }\n\n /**\n * Get or set the tooltip content and options for the hexbin layer.\n */\n // Cannot overload bindTooltip() with data dependant content\n tooltip(tooltip: TooltipOptions<Data>): this {\n this._tooltipOptions = tooltip;\n if (this._tooltip)\n this._tooltip.options = tooltip.options ?? {};\n else {\n this._tooltip = L.tooltip(tooltip.options)\n }\n return this\n }\n\n /**\n * Get the tooltip instance attached to the hexbin layer\n */\n getTooltip(): L.Tooltip | undefined {\n return this._tooltip\n }\n\n /**\n * Bind a tooltip to the hexbin layer with the provided content and options.\n * Useful to bind an existing tooltip instance to the hexbin layer.\n */\n bindTooltip(content: L.Tooltip | L.Content, options?: L.TooltipOptions): this {\n if (content instanceof L.Tooltip) {\n this._tooltip = content;\n // FIXME: weird bug likely coming from vue-leaflet were tooltip is not properly positioned\n // this._tooltip.options.offset[0] -= 5;\n if (this._map) {\n this._tooltip.setLatLng([0, 0]).addTo(this._map)\n }\n } else {\n this._tooltip = L.tooltip(options).setContent(content);\n }\n return this\n }\n\n /**\n * Unbind the tooltip from the hexbin layer\n */\n unbindTooltip(): this {\n this._tooltip?.remove();\n this._tooltip = undefined;\n return this\n }\n\n /*\n * Returns an array of the points in the path, or nested arrays of points in case of multi-polyline.\n */\n getLatLngs() {\n // Map the data into an array of latLngs using the configured lat/lng accessors\n return this._data.map((d) => {\n return L.latLng(this._accessor(d));\n });\n }\n /*\n * Get path geometry as GeoJSON\n */\n toGeoJSON(): GeoJSON.Feature<GeoJSON.MultiPoint, L.LatLng> {\n return L.GeoJSON.getFeature<L.LatLng, GeoJSON.MultiPoint>(this, {\n type: 'MultiPoint',\n coordinates: L.GeoJSON.latLngsToCoords(this.getLatLngs(), 0)\n });\n }\n}\n\n/**\n * Factory function to instanciate a new hexbin layer\n */\nexport function hexbinLayer<Data = L.LatLngExpression>(options?: HexbinLayerConfig) {\n return new HexbinLayer<Data>(options);\n}\n\n\n"],"names":["HexbinHoverHandler","resizeFill","svg","hexLayer","event","data","d3","d","resizeScale","radiusScale","compound","handlers","none","h","HexbinHoverHandler$1","isLatLngExpression","L","debounce","callback","delay","timeoutTimer","args","HexbinLayer","options","val","scaleLinear","dispatch","hexbin","x","y","select","map","_a","that","coord","point","join","enterUpdate","from","to","length","step","_","i","g","thisLayer","size","bounds","bins","colorExtent","radiusExtent","opacityExtent","colorDomain","radiusDomain","container","hexagons","ev","_b","latLng","exit","valueFn","scaleExtent","ext","extent","v","accessor","tooltip","content","hexbinLayer"],"mappings":"ynBAeiB,IAAAA,GAAAA,GAAV,CAIE,SAASC,GAAsC,CAC7C,MAAA,CACL,UAAW,SAAUC,EAAqBC,EAA4BC,EAAmBC,EAAyB,CACtGC,EAAG,OAA8CJ,EAAI,aAAa,EAC1E,OAAO,qBAAqB,EAC3B,WAAa,EAAA,SAASC,EAAS,QAAQ,QAAQ,EAC/C,KAAK,IAAK,SAAUI,EAAG,CACtB,OAAOJ,EAAS,WAAW,QAAQA,EAAS,QAAQ,MAAM,CAAA,CAC3D,CACL,EACA,SAAU,SAAUD,EAAqBC,EAA4BC,EAAmBC,EAAyB,CACrGC,EAAG,OAA8CJ,EAAI,aAAa,EAC1E,OAAuB,qBAAqB,EAC3C,WAAa,EAAA,SAASC,EAAS,QAAQ,QAAQ,EAC/C,KAAK,IAAK,SAAUI,EAAG,CACf,OAAAJ,EAAS,WAAW,QAAQA,EAAS,cAAcA,EAAS,YAAY,EAAEI,CAAC,CAAC,CAAC,CAAA,CACrF,CAAA,CAEP,CAAA,CAlBKP,EAAS,WAAAC,EAyBA,SAAAO,EAAYC,EAAsB,IAA8B,CAGvE,MAAA,CACL,UAAW,SAAUP,EAAKC,EAAUC,EAAOC,EAAM,CACrCC,EAAG,OAA8CJ,EAAI,aAAa,EAC1E,OAAO,qBAAqB,EAC3B,WAAA,EAAa,SAASC,EAAS,QAAQ,QAAQ,EAC/C,KAAK,IAAK,UAAY,CACd,OAAAA,EAAS,WAAW,QAAQA,EAAS,cAAc,MAAM,EAAE,CAAC,EAAKM,CAAY,CAAA,CACrF,CACL,EACA,SAAU,SAAUP,EAAKC,EAAUC,EAAOC,EAAM,CACpCC,EAAG,OAA8CJ,EAAI,aAAc,EAC3E,OAAO,qBAAqB,EAC3B,WAAa,EAAA,SAASC,EAAS,QAAQ,QAAQ,EAC/C,KAAK,IAAMI,GACHJ,EAAS,WAAW,QAAQA,EAAS,cAAcA,EAAS,YAAY,EAAEI,CAAC,CAAC,CAAC,CACrF,CAAA,CAEP,CAAA,CApBKP,EAAS,YAAAQ,EA0BT,SAASE,EAAeC,EAAuC,CAACC,EAAM,CAAA,EAA6B,CACjG,MAAA,CACL,UAAW,SAAUV,EAAKC,EAAUC,EAAOC,EAAM,CACrCM,EAAA,QAASE,GAAM,CAAEA,EAAE,UAAUX,EAAKC,EAAUC,EAAOC,CAAI,CAAA,CAAI,CACvE,EACA,SAAU,SAAUH,EAAKC,EAAUC,EAAOC,EAAM,CACpCM,EAAA,QAASE,GAAM,CAAEA,EAAE,SAASX,EAAKC,EAAUC,EAAOC,CAAI,CAAA,CAAI,CAAA,CAExE,CAAA,CARKL,EAAS,SAAAU,EAeT,SAASE,GAAgC,CACvC,MAAA,CACL,UAAW,UAAY,CAAE,EACzB,SAAU,UAAY,CAAA,CACxB,CAAA,CAJKZ,EAAS,KAAAY,CAAA,GAtEDZ,IAAAA,EAAA,CAAA,EAAA,EA8EjB,MAAAc,EAAed,ECyBf,SAASe,EAAmBR,EAAiC,CAEzD,OAAAA,aAAaS,EAAE,QACd,OAAOT,GAAM,UAAY,QAASA,GAAK,QAASA,GAChD,MAAM,QAAQA,CAAC,GAAKA,EAAE,SAAW,GAAK,OAAOA,EAAE,CAAC,GAAM,UAAY,OAAOA,EAAE,CAAC,GAAM,QAEvF,CAEA,MAAMU,EAAW,CACfC,EACAC,IACG,CACC,IAAAC,EAEJ,OAAO,YAAaC,EAAS,CAC3B,aAAaD,CAAY,EAEzBA,EAAe,WAAW,IAAM,CAC9BF,EAAS,GAAGG,CAAI,GACfF,CAAK,CACV,CACF,EAOa,MAAAG,UAA+CN,EAAE,GAAI,CAwEzD,YAAYO,EAA6B,CACxC,MAAA,EArEmD,KAAA,QAAA,CACzD,OAAQ,GACR,QAAS,GACT,SAAU,IAEV,iBAAkB,CAAC,EAAG,MAAS,EAC/B,kBAAmB,CAAC,EAAG,MAAS,EAChC,mBAAoB,CAAC,EAAG,MAAS,EACjC,YAAa,KACb,aAAc,KACd,WAAY,CAAC,UAAW,SAAS,EACjC,YAAa,KAEb,cAAe,MACf,SAAU,GAGV,GAAGP,EAAE,SAAS,UAAU,QACxB,GAAGA,EAAE,MAAM,UAAU,OACvB,EAKA,KAAU,IAAM,CACd,WAAaT,GAA0BA,EAAE,OACzC,YAAcA,GAA0BA,EAAE,OAC1C,aAAeA,GAA0BA,EAAE,OAC3C,KAAOA,GAA0B,CAC/B,MAAMiB,EAAM,KAAK,IAAI,WAAWjB,CAAC,EACjC,OAAgBiB,GAAR,KAAe,KAAK,OAAO,MAAMA,CAAG,EAAI,MAAA,CAEpD,EAIS,KAAA,OAAA,CACP,MAAOC,EAAAA,YAA4B,EACnC,OAAQA,EAAAA,YAAY,EACpB,QAASA,EAAY,YAAA,CACvB,EAGA,KAAU,UAAYC,EAAAA,SAAyB,YAAa,WAAY,OAAO,EAGrE,KAAA,cAA0C1B,EAAmB,KAAK,EAG/D,KAAA,WAAA2B,EAAA,OAAA,EACV,OAAO,KAAK,QAAQ,MAAM,EAC1B,EAAE,CAAC,CAAE,MAAO,CAAE,EAAAC,CAAI,CAAA,IAAMA,CAAC,EACzB,EAAE,CAAC,CAAE,MAAO,CAAE,EAAAC,EAAI,IAAMA,CAAC,EAG5B,KAAU,MAAQ,MAAY,EAK9B,KAAU,gBAAwC,CAAC,EAWjD,KAAK,QAAU,CAAE,GAAG,KAAK,QAAS,GAAGN,CAAQ,EACxC,KAAA,OAAO,MACT,MAAM,KAAK,QAAQ,UAAU,EAC7B,MAAM,EAAI,EAEb,KAAK,OAAO,OACT,MAAM,KAAK,QAAQ,aAAe,CAAC,KAAK,QAAQ,OAAQ,KAAK,QAAQ,MAAM,CAAC,EAC5E,MAAM,EAAI,EAEb,KAAK,OAAO,QACT,MACC,OAAO,KAAK,QAAQ,SAAY,SAC5B,CAAC,KAAK,QAAQ,QAAS,KAAK,QAAQ,OAAO,EAC3C,KAAK,QAAQ,OAAA,EACjB,MAAM,EAAI,CAAA,CAIN,UAAUhB,EAAS,CACpB,OAAAA,CAAA,CAOT,gBAAiB,CACf,MAAM,eAAe,EACrB,KAAK,aAAeuB,SAAO,KAAK,UAAU,EAAE,OAAkC,GAAG,CAAA,CAMnF,MAAMC,EAAkB,OAEtB,aAAM,MAAMA,CAAG,EAGf,KAAK,KAAOA,GACPC,EAAA,KAAA,WAAA,MAAAA,EAAU,UAAU,CAAC,EAAG,CAAC,GAAG,MAAMD,GAEnCA,EAAA,GAAG,UAAWd,EAAS,IAAM,KAAK,OAAO,EAAG,GAAG,CAAC,EAEpD,KAAK,OAAO,EACL,IAAA,CAOT,SAASc,EAAkB,CAEzB,YAAK,kBAAkB,EAEvBA,EAAI,IAAI,UAAW,KAAK,OAAQ,IAAI,EAC7B,IAAA,CAMC,mBAAoB,CACrBD,EAAAA,OAAA,KAAK,UAAU,EAAE,OAAO,CAAA,CAM1B,QAAS,CACd,MAAMG,EAAO,KAET,GAAA,CAACA,EAAK,KAAM,OAGhB,MAAM5B,EAAO4B,EAAK,MAAM,IAAuB1B,GAAY,CACnD,MAAA2B,EAAQD,EAAK,UAAU1B,CAAC,EACxB4B,EAAQF,EAAK,KAAK,mBAAmBC,CAAK,EAChD,MAAO,CAAE,MAAAA,EAAc,MAAAC,EAAO,KAAM5B,CAAE,CAAA,CACvC,EAIK6B,EAAO,KAAK,aAAa,UAA+B,UAAU,EACrE,KAAa,CAAC,KAAK,KAAK,QAAQ,CAAC,EAAI7B,GAAMA,CAAC,EAOzC8B,EAJQD,EAAK,QAAQ,OAAO,GAAG,EAClC,KAAK,QAAS,SAAU7B,EAAG,CAAE,MAAO,eAAiBA,CAAA,CAAI,EAGlC,MAAM6B,CAAI,EAG/BA,EAAA,OAAO,OAAO,EAGd,KAAA,gBAAgBC,EAAahC,CAAI,CAAA,CAI9B,eAAeiC,EAAcC,EAAYC,EAA0B,CAC3E,MAAMC,GAAQF,EAAKD,GAAQ,KAAK,IAAIE,EAAS,EAAG,CAAC,EAC1C,OAAA,MAAM,KAAK,CAAE,OAAAA,CAAO,EAAG,CAACE,EAAGC,IAAML,EAAQK,EAAIF,CAAK,CAAA,CAG3D,gBAAgBG,EAA4DvC,EAA0B,CACpG,MAAMwC,EAAY,KAKZC,EAAOD,EAAU,KAAK,QAAQ,EAC9BE,EAASF,EAAU,KAAK,UAAU,EAAE,IAAIA,EAAU,QAAQ,OAAS,EAAI,KAAK,IAAIC,EAAK,EAAGA,EAAK,CAAC,CAAC,EAE/FE,EAAOH,EAAU,WAAWxC,CAAI,EAAE,OACtC,CAAC,CAAE,EAAAuB,EAAG,EAAAC,KAAQkB,EAAO,SAASF,EAAU,KAAK,mBAAmB7B,EAAE,MAAMY,EAAGC,CAAC,CAAC,CAAC,CAChF,EAGMoB,EAAcJ,EAAU,WAAWG,EAAMH,EAAU,IAAI,WAAYA,EAAU,QAAQ,gBAAgB,EACrGK,EAAeL,EAAU,WAAWG,EAAMH,EAAU,IAAI,YAAaA,EAAU,QAAQ,iBAAiB,EACxGM,EAAgBN,EAAU,WAAWG,EAAMH,EAAU,IAAI,aAAcA,EAAU,QAAQ,kBAAkB,EAG3GO,EAAc,KAAK,QAAQ,aAC5BP,EAAU,eACXI,EAAY,CAAC,EACbA,EAAY,CAAC,EACbJ,EAAU,OAAO,MAAM,QAAQ,MACjC,EACIQ,EAAe,KAAK,QAAQ,cAAgBH,EAGxCL,EAAA,OAAO,MAAM,OAAOO,CAAW,EAC/BP,EAAA,OAAO,OAAO,OAAOQ,CAAY,EACjCR,EAAA,OAAO,QAAQ,OAAOM,CAAa,EAQ7C,MAAMf,EAAOQ,EAAE,UAAoD,oBAAoB,EACpF,KAAKI,EAAM,CAAC,CAAE,EAAApB,EAAG,EAAAC,CAAQ,IAAA,GAAGD,CAAC,IAAIC,CAAC,EAAE,EASlCO,EAAA,OAAuB,qBAAqB,EAC9C,WAAW,EAAE,SAASS,EAAU,QAAQ,QAAQ,EAChD,KAAK,OAAQA,EAAU,IAAI,KAAK,KAAKA,CAAS,CAAC,EAC/C,KAAK,eAAiBtC,GAAMsC,EAAU,OAAO,QAAQA,EAAU,IAAI,aAAa,KAAKA,EAAWtC,CAAC,CAAC,CAAC,EACnG,KAAK,iBAAmBA,GAAMsC,EAAU,OAAO,QAAQA,EAAU,IAAI,aAAa,KAAKA,EAAWtC,CAAC,CAAC,CAAC,EACrG,KAAK,IAAMA,GACHsC,EAAU,WAAW,QAAQA,EAAU,OAAO,OAAOA,EAAU,IAAI,YAAY,KAAKA,EAAWtC,CAAC,CAAC,CAAC,CAC1G,EAQH,MAAM+C,EAAYlB,EAAK,MAAM,EAAE,OAAO,GAAG,EAAE,KAAK,QAAS,kBAAkB,EACxE,MAAM,iBAAkBS,EAAU,QAAQ,aAAa,EAG1DS,EAAU,GAAG,YAAa,SAA6B/C,EAAeoC,EAAG,CAEtBb,SAAA,IAAI,EAAE,MAAM,CAAA,CAC9D,EAEK,MAAAyB,EAAWD,EAAU,OAAO,MAAM,EAAE,KAAK,QAAS,gBAAgB,EACrE,KAAK,YAAa,CAAC,CAAE,EAAA1B,EAAG,EAAAC,CAAE,IAAM,aAAaD,CAAC,IAAIC,CAAC,GAAG,EACtD,KAAK,IAAK,IAAMgB,EAAU,WAAW,QAAQA,EAAU,OAAO,OAAO,MAAM,EAAE,CAAC,CAAC,CAAC,EAEhF,KAAK,OAAQA,EAAU,IAAI,KAAK,KAAKA,CAAS,CAAC,EAC/C,KAAK,eAAgB,GAAI,EACzB,KAAK,iBAAkB,GAAI,EAC3B,MAAM,iBAAkB,KAAK,EAEhCU,EAAS,WAAW,EAAE,SAASV,EAAU,QAAQ,QAAQ,EACtD,KAAK,eAAiBtC,GAAMsC,EAAU,OAAO,QAAQA,EAAU,IAAI,aAAa,KAAKA,EAAWtC,CAAC,CAAC,CAAC,EACnG,KAAK,iBAAmBA,GAAMsC,EAAU,OAAO,QAAQA,EAAU,IAAI,aAAa,KAAKA,EAAWtC,CAAC,CAAC,CAAC,EACrG,KAAK,IAAMA,GAAMsC,EAAU,WAAW,QAAQA,EAAU,OAAO,OAAOA,EAAU,IAAI,YAAY,KAAKA,EAAWtC,CAAC,CAAC,CAAC,CAAC,EACpH,MAAM,iBAAkB,KAAK,EAGd+C,EAAU,OAAO,MAAM,EAAE,KAAK,QAAS,aAAa,EACnE,KAAK,YAAa,CAAC,CAAE,EAAA1B,EAAG,EAAAC,CAAE,IAAM,aAAaD,CAAC,IAAIC,CAAC,GAAG,EACtD,KAAK,IAAK,IAAMgB,EAAU,WAAW,QAAQA,EAAU,QAAQ,MAAM,CAAC,EACtE,KAAK,OAAQ,MAAM,EACnB,KAAK,SAAU,MAAM,EAIxBU,EAAS,GAAG,YAAa,SAAgCC,EAAgBnD,EAAM,UACzE2B,EAAAa,EAAU,kBAAV,MAAAb,EAA2B,WAC7ByB,EAAAZ,EAAU,WAAV,MAAAY,EACI,WACA,OAAOZ,EAAU,gBAAgB,SAAY,WACzCA,EAAU,gBAAgB,QAAQxC,CAAI,EACtCwC,EAAU,gBAAgB,SAE/B,UACCA,EAAU,KAAK,mBAAmB7B,EAAE,MAAMX,EAAK,EAAGA,EAAK,CAAC,CAAC,GAE1D,OAAOwC,EAAU,OAEtBA,EAAU,cAAc,UAAU,KAAMA,EAAWW,EAAInD,CAAI,EAC3DwC,EAAU,UAAU,KAAK,YAAa,KAAMxC,EAAMwC,EAAWW,CAAE,EAC1D,KAAA,UAAU,IAAI,OAAO,CAC3B,CAAA,EACE,GAAG,WAAY,SAAgCA,EAAgBnD,EAAM,QACpE2B,EAAAa,EAAU,WAAV,MAAAb,EAAoB,QACpBa,EAAU,cAAc,SAAS,KAAMA,EAAWW,EAAInD,CAAI,EAC1DwC,EAAU,UAAU,KAAK,WAAY,KAAMxC,EAAMwC,EAAWW,CAAE,EACzD,KAAA,UAAU,OAAO,OAAO,CAC9B,CAAA,EACA,GAAG,QAAS,SAAgBA,EAAgBnD,EAAM,CAC3C,MAAAqD,EAASb,EAAU,KAAK,mBAAmB7B,EAAE,MAAMX,EAAK,EAAGA,EAAK,CAAC,CAAC,EACxEwC,EAAU,UAAU,KAAK,QAAS,KAAMxC,EAAMqD,EAAQb,EAAWW,CAAE,EACnEA,EAAG,gBAAgB,CAAA,CACpB,EAIG,MAAAG,EAAOvB,EAAK,KAAK,EAElBuB,EAAA,OAAO,qBAAqB,EAC9B,WAAW,EAAE,SAASd,EAAU,QAAQ,QAAQ,EAChD,KAAK,eAAgB,CAAC,EACtB,KAAK,iBAAkB,CAAC,EACxB,KAAK,IAAMtC,GAAMsC,EAAU,WAAW,QAAQ,CAAC,CAAC,EAEnDc,EAAK,aAAa,SAASd,EAAU,QAAQ,QAAQ,EAAE,OAAO,CAAA,CAIhE,WACEG,EACAY,EACAC,EACkB,CAGlB,IAAIC,EAAMC,EAAAA,OAA4Cf,EAAMY,EAAQ,KAAK,IAAI,CAAC,EAE9E,OAAIE,EAAI,CAAC,IAAM,QAAaA,EAAI,CAAC,IAAM,UAC/BA,EAAA,CAAC,EAAG,CAAC,GAIID,EAAY,CAAC,GAA1B,SAAiC,CAAC,EAAIA,EAAY,CAAC,GACtCA,EAAY,CAAC,GAA1B,SAAiC,CAAC,EAAIA,EAAY,CAAC,GAEhDC,CAAA,CAYT,OAAOE,EAA2B,CAChC,OAAIA,IAAM,OAAkB,KAAK,QAAQ,QAEzC,KAAK,QAAQ,OAASA,EACjB,KAAA,WAAW,OAAOA,CAAC,EAEZ,KAAK,QAAQ,aAArB,MACF,KAAK,OAAO,OAAO,MAAM,CAAC,KAAK,QAAQ,OAAQ,KAAK,QAAQ,MAAM,CAAC,EAAE,MAAM,EAAI,EAG1E,KAAA,CAUT,QAAQA,EAAiE,CACvE,OAAIA,IAAM,OAAkB,KAAK,QAAQ,SACzC,KAAK,QAAQ,QAAUA,EACvB,KAAK,OAAO,QAAQ,MAAM,OAAOA,GAAM,SAAW,CAACA,EAAGA,CAAC,EAAIA,CAAC,EAAE,MAAM,EAAI,EAEjE,KAAA,CAQT,SAASA,EAA2B,CAClC,OAAIA,IAAM,OAAkB,KAAK,QAAQ,UACzC,KAAK,QAAQ,SAAWA,EAEjB,KAAA,CAST,iBAAiBA,EAAuE,CACtF,OAAIA,IAAM,OAAoB,KAAK,QAAQ,kBAC3C,KAAK,QAAQ,iBAAmBA,EAEzB,KAAA,CAST,kBAAkBA,EAAuE,CACvF,OAAIA,IAAM,OAAoB,KAAK,QAAQ,mBAC3C,KAAK,QAAQ,kBAAoBA,EAE1B,KAAA,CAST,mBAAmBA,EAAuE,CACxF,OAAIA,IAAM,OAAoB,KAAK,QAAQ,oBAC3C,KAAK,QAAQ,mBAAqBA,EAE3B,KAAA,CAUT,WAAWA,EAA+B,CACxC,OAAIA,IAAM,OAAoB,KAAK,QAAQ,YAC3C,KAAK,QAAQ,WAAaA,EACrB,KAAA,OAAO,MAAM,MAAMA,CAAC,EAElB,KAAA,CAST,YAAYA,EAA6D,CACvE,OAAIA,IAAM,OAAoB,KAAK,QAAQ,aAC3C,KAAK,QAAQ,YAAcA,EAC3B,KAAK,OAAO,OAAO,MAAM,KAAK,QAAQ,aAAe,CAAC,KAAK,QAAQ,OAAQ,KAAK,QAAQ,MAAM,CAAC,EAAE,MAAM,EAAI,EAEpG,KAAA,CAQT,WAAWA,EAAoC,CAC7C,OAAIA,IAAM,OAAkB,KAAK,OAAO,OACxC,KAAK,OAAO,MAAQA,EACb,KAAA,CAQT,YAAYA,EAA2E,CACrF,OAAIA,IAAM,OAAkB,KAAK,OAAO,QACxC,KAAK,OAAO,OAASA,EACd,KAAA,CAUT,WAAWA,EAAuC,CAChD,OAAIA,IAAM,OAAoB,KAAK,IAAI,YACvC,KAAK,IAAI,WAAaA,EAEf,KAAA,CAUT,YAAYA,EAAuC,CACjD,OAAIA,IAAM,OAAoB,KAAK,IAAI,aACvC,KAAK,IAAI,YAAcA,EAEhB,KAAA,CAUT,KAAKA,EAAuC,CAC1C,OAAIA,IAAM,OAAoB,KAAK,IAAI,MACvC,KAAK,IAAI,KAAOA,EAET,KAAA,CAcT,KAAKA,EAAmCC,EAA2D,CACjG,OAAID,IAAM,OACD,KAAK,OAGV,CAACjD,EAAmBiD,EAAE,CAAC,CAAC,GAAK,CAACC,GAChC,QAAQ,MAAM,4JAA4J,EAGvK,KAAA,MAAQD,GAAe,CAAC,EACxB,KAAA,UAAYC,IAAc1D,GAAYA,GAEtC,KAAK,QAAQ,eAAe,OAAO,EACjC,KAAA,CAGT,UAA4C,CAC1C,OAAO,KAAK,SAAA,CAMd,UAAW,CAAE,OAAO,KAAK,SAAA,CAOzB,aAAayD,EAA+D,CAC1E,OAAIA,IAAM,OAAoB,KAAK,eACnC,KAAK,cAAyBA,GAAShE,EAAmB,KAAK,EAE1D,KAAK,QAAQ,eAAe,OAAO,EAEjC,KAAA,CAOT,QAAQkE,EAAqC,CAC3C,YAAK,gBAAkBA,EACnB,KAAK,SACP,KAAK,SAAS,QAAUA,EAAQ,SAAW,CAAC,EAE5C,KAAK,SAAWlD,EAAE,QAAQkD,EAAQ,OAAO,EAEpC,IAAA,CAMT,YAAoC,CAClC,OAAO,KAAK,QAAA,CAOd,YAAYC,EAAgC5C,EAAkC,CACxE,OAAA4C,aAAmBnD,EAAE,SACvB,KAAK,SAAWmD,EAGZ,KAAK,MACF,KAAA,SAAS,UAAU,CAAC,EAAG,CAAC,CAAC,EAAE,MAAM,KAAK,IAAI,GAGjD,KAAK,SAAWnD,EAAE,QAAQO,CAAO,EAAE,WAAW4C,CAAO,EAEhD,IAAA,CAMT,eAAsB,OACpB,OAAAnC,EAAA,KAAK,WAAL,MAAAA,EAAe,SACf,KAAK,SAAW,OACT,IAAA,CAMT,YAAa,CAEX,OAAO,KAAK,MAAM,IAAKzB,GACdS,EAAE,OAAO,KAAK,UAAUT,CAAC,CAAC,CAClC,CAAA,CAKH,WAA2D,CAClD,OAAAS,EAAE,QAAQ,WAAyC,KAAM,CAC9D,KAAM,aACN,YAAaA,EAAE,QAAQ,gBAAgB,KAAK,WAAA,EAAc,CAAC,CAAA,CAC5D,CAAA,CAEL,CAKO,SAASoD,EAAuC7C,EAA6B,CAC3E,OAAA,IAAID,EAAkBC,CAAO,CACtC"}
|
@@ -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.
|
@@ -90,38 +97,44 @@ export interface HexbinLayerConfig {
|
|
90
97
|
export type HexbinData<Data> = {
|
91
98
|
data: Data;
|
92
99
|
coord: L.LatLngExpression;
|
93
|
-
point: Readonly<
|
100
|
+
point: Readonly<L.Point>;
|
94
101
|
};
|
95
102
|
/**
|
96
|
-
*
|
103
|
+
* A layer for displaying binned data in a hexagon grid on a Leaflet map.
|
97
104
|
* Extends L.SVG to take advantage of built-in zoom animations.
|
98
105
|
*/
|
99
106
|
export declare class HexbinLayer<Data = L.LatLngExpression> extends L.SVG {
|
107
|
+
/**
|
108
|
+
* Default options for the hexbin layer
|
109
|
+
*/
|
100
110
|
options: Required<HexbinLayerConfig> & L.RendererOptions;
|
101
|
-
|
102
|
-
|
103
|
-
|
111
|
+
/**
|
112
|
+
* Internal functions to access the data
|
113
|
+
*/
|
114
|
+
protected _fn: {
|
104
115
|
colorValue: (d: HexbinData<Data>[]) => number;
|
105
116
|
radiusValue: (d: HexbinData<Data>[]) => number;
|
106
117
|
opacityValue: (d: HexbinData<Data>[]) => number;
|
107
118
|
fill: (d: HexbinData<Data>[]) => string;
|
108
119
|
};
|
120
|
+
/**
|
121
|
+
* D3 scales used for the hexbin layer
|
122
|
+
*/
|
109
123
|
_scale: {
|
110
124
|
color: import('d3').ScaleLinear<string, string, never>;
|
111
125
|
radius: import('d3').ScaleLinear<number, number, never>;
|
112
126
|
opacity: import('d3').ScaleLinear<number, number, never>;
|
113
127
|
};
|
114
|
-
_dispatch: import('d3').Dispatch<SVGPathElement>;
|
115
|
-
_hoverHandler: HexbinHoverHandler<Data>;
|
128
|
+
protected _dispatch: import('d3').Dispatch<SVGPathElement>;
|
129
|
+
protected _hoverHandler: HexbinHoverHandler<Data>;
|
116
130
|
_hexLayout: import('d3-hexbin').Hexbin<HexbinData<Data>>;
|
117
|
-
_data: Data[];
|
118
|
-
_map: L.Map;
|
119
|
-
_tooltipOptions: TooltipOptions<Data>;
|
120
|
-
_tooltip: L.Tooltip | undefined;
|
121
|
-
|
122
|
-
_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>;
|
123
136
|
constructor(options?: HexbinLayerConfig);
|
124
|
-
_accessor(d: Data): L.LatLngExpression;
|
137
|
+
protected _accessor(d: Data): L.LatLngExpression;
|
125
138
|
/**
|
126
139
|
* Create the SVG container for the hexbins
|
127
140
|
* @private
|
@@ -132,7 +145,6 @@ export declare class HexbinLayer<Data = L.LatLngExpression> extends L.SVG {
|
|
132
145
|
* @param map Reference to the map to which this layer has been added
|
133
146
|
*/
|
134
147
|
onAdd(map: L.Map): this;
|
135
|
-
_project(latlng: L.LatLngExpression): readonly [number, number];
|
136
148
|
/**
|
137
149
|
* Callback made by Leaflet when the layer is removed from the map
|
138
150
|
* @param map Reference to the map from which this layer is being removed
|
@@ -140,56 +152,124 @@ export declare class HexbinLayer<Data = L.LatLngExpression> extends L.SVG {
|
|
140
152
|
onRemove(map: L.Map): this;
|
141
153
|
/**
|
142
154
|
* Clean up the svg container
|
143
|
-
* @private
|
144
155
|
*/
|
145
|
-
_destroyContainer(): void;
|
156
|
+
protected _destroyContainer(): void;
|
146
157
|
/**
|
147
158
|
* (Re)draws the hexbins data on the container
|
148
|
-
* @private
|
149
159
|
*/
|
150
160
|
redraw(): void;
|
151
|
-
_linearlySpace(from: number, to: number, length: number): number[];
|
161
|
+
protected _linearlySpace(from: number, to: number, length: number): number[];
|
152
162
|
_createHexagons(g: d3.Selection<SVGGElement, number, SVGGElement, unknown>, data: HexbinData<Data>[]): void;
|
153
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
|
+
*/
|
154
167
|
radius(): number;
|
155
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
|
+
*/
|
156
173
|
opacity(): number | [number, number];
|
157
174
|
opacity(v: number | [number, number]): this;
|
175
|
+
/**
|
176
|
+
* Get or set the duration of transition animations
|
177
|
+
*/
|
158
178
|
duration(): number;
|
159
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
|
+
*/
|
160
184
|
colorScaleExtent(): [number, number | undefined];
|
161
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
|
+
*/
|
162
190
|
radiusScaleExtent(): [number, number | undefined];
|
163
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
|
+
*/
|
164
196
|
opacityScaleExtent(): [number, number | undefined];
|
165
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
|
+
*/
|
166
202
|
colorRange(): string[];
|
167
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
|
+
*/
|
168
208
|
radiusRange(): [number, number] | null;
|
169
209
|
radiusRange(v: [number, number] | null): this;
|
210
|
+
/**
|
211
|
+
* Get or set the color scale domain
|
212
|
+
*/
|
170
213
|
colorScale(): d3.ScaleLinear<string, string>;
|
171
214
|
colorScale(v: d3.ScaleLinear<string, string>): this;
|
215
|
+
/**
|
216
|
+
* Get or set the radius scale domain
|
217
|
+
*/
|
172
218
|
radiusScale(): d3.ScaleLinear<number, number>;
|
173
219
|
radiusScale(v: d3.ScaleLinear<number, number>): this;
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
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
|
+
*/
|
178
225
|
colorValue(): (d: HexbinData<Data>[]) => number;
|
179
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
|
+
*/
|
180
232
|
radiusValue(): (d: HexbinData<Data>[]) => number;
|
181
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
|
+
*/
|
182
239
|
fill(): (d: HexbinData<Data>[]) => string;
|
183
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
|
+
*/
|
184
247
|
data(): Data[];
|
185
248
|
data(v: Data extends L.LatLngExpression ? Data[] : never): this;
|
186
249
|
data(v: Data[], accessor?: (d: Data) => L.LatLngExpression): this;
|
250
|
+
accessor(): (d: Data) => L.LatLngExpression;
|
187
251
|
dispatch(): import('d3').Dispatch<SVGPathElement>;
|
252
|
+
/**
|
253
|
+
* Get or set the hover handler for the hexbin layer.
|
254
|
+
*/
|
188
255
|
hoverHandler(): HexbinHoverHandler<Data>;
|
189
256
|
hoverHandler(v: HexbinHoverHandler<Data>): this;
|
257
|
+
/**
|
258
|
+
* Get or set the tooltip content and options for the hexbin layer.
|
259
|
+
*/
|
190
260
|
tooltip(tooltip: TooltipOptions<Data>): this;
|
261
|
+
/**
|
262
|
+
* Get the tooltip instance attached to the hexbin layer
|
263
|
+
*/
|
191
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
|
+
*/
|
192
269
|
bindTooltip(content: L.Tooltip | L.Content, options?: L.TooltipOptions): this;
|
270
|
+
/**
|
271
|
+
* Unbind the tooltip from the hexbin layer
|
272
|
+
*/
|
193
273
|
unbindTooltip(): this;
|
194
274
|
getLatLngs(): L.LatLng[];
|
195
275
|
toGeoJSON(): GeoJSON.Feature<GeoJSON.MultiPoint, L.LatLng>;
|
@@ -198,4 +278,3 @@ export declare class HexbinLayer<Data = L.LatLngExpression> extends L.SVG {
|
|
198
278
|
* Factory function to instanciate a new hexbin layer
|
199
279
|
*/
|
200
280
|
export declare function hexbinLayer<Data = L.LatLngExpression>(options?: HexbinLayerConfig): HexbinLayer<Data>;
|
201
|
-
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, };
|