leaflet-hexbin 0.0.5 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.es.js +129 -122
- 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 +8 -13
- package/dist/types/HexbinLayer.d.ts +43 -29
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
@@ -1,75 +1,53 @@
|
|
1
|
-
import * as
|
2
|
-
import { scaleLinear as
|
3
|
-
import { hexbin as
|
4
|
-
import * as
|
5
|
-
var
|
6
|
-
((
|
7
|
-
function t(
|
8
|
-
return `Count: ${o.length}`;
|
9
|
-
} }) {
|
10
|
-
const o = m.select("body").append("div").attr("class", "hexbin-tooltip").style("z-index", 9999).style("pointer-events", "none").style("visibility", "hidden").style("position", "fixed");
|
11
|
-
return o.append("div").attr("class", "tooltip-content"), {
|
12
|
-
mouseover: function(s, d, u, c) {
|
13
|
-
const f = m.pointer(u);
|
14
|
-
o.style("visibility", "visible").html(a.tooltipContent(c, d));
|
15
|
-
const g = o.node();
|
16
|
-
if (!g) {
|
17
|
-
console.warn("Leaflet hexbin: tooltip node not found");
|
18
|
-
return;
|
19
|
-
}
|
20
|
-
const y = g.clientHeight, x = g.clientWidth;
|
21
|
-
o.style("top", u.clientY - f[1] - y - 16 + "px").style("left", u.clientX - f[0] - x / 2 + "px");
|
22
|
-
},
|
23
|
-
mouseout: function(s, d, u, c) {
|
24
|
-
o.style("visibility", "hidden").html();
|
25
|
-
}
|
26
|
-
};
|
27
|
-
}
|
28
|
-
p.tooltip = t;
|
29
|
-
function e() {
|
1
|
+
import * as _ from "d3";
|
2
|
+
import { scaleLinear as y, dispatch as v, select as L, extent as T } from "d3";
|
3
|
+
import { hexbin as O } from "d3-hexbin";
|
4
|
+
import * as l from "leaflet";
|
5
|
+
var b;
|
6
|
+
((r) => {
|
7
|
+
function t() {
|
30
8
|
return {
|
31
|
-
mouseover: function(
|
32
|
-
|
33
|
-
return
|
9
|
+
mouseover: function(c, i, s, p) {
|
10
|
+
_.select(c.parentElement).select("path.hexbin-hexagon").transition().duration(i.options.duration).attr("d", function(h) {
|
11
|
+
return i._hexLayout.hexagon(i.options.radius);
|
34
12
|
});
|
35
13
|
},
|
36
|
-
mouseout: function(
|
37
|
-
|
38
|
-
return
|
14
|
+
mouseout: function(c, i, s, p) {
|
15
|
+
_.select(c.parentElement).select("path.hexbin-hexagon").transition().duration(i.options.duration).attr("d", function(h) {
|
16
|
+
return i._hexLayout.hexagon(i._scale.radius(i._fn.radiusValue.call(i, h)));
|
39
17
|
});
|
40
18
|
}
|
41
19
|
};
|
42
20
|
}
|
43
|
-
|
44
|
-
function
|
21
|
+
r.resizeFill = t;
|
22
|
+
function o(c = 1.5) {
|
45
23
|
return {
|
46
|
-
mouseover: function(
|
47
|
-
|
48
|
-
return s._hexLayout.hexagon(s._scale.radius.range()[1] *
|
24
|
+
mouseover: function(i, s, p, d) {
|
25
|
+
_.select(i.parentElement).select("path.hexbin-hexagon").transition().duration(s.options.duration).attr("d", function() {
|
26
|
+
return s._hexLayout.hexagon(s._scale.radius.range()[1] * c);
|
49
27
|
});
|
50
28
|
},
|
51
|
-
mouseout: function(
|
52
|
-
|
29
|
+
mouseout: function(i, s, p, d) {
|
30
|
+
_.select(i.parentElement).select("path.hexbin-hexagon").transition().duration(s.options.duration).attr("d", (g) => s._hexLayout.hexagon(s._scale.radius(s._fn.radiusValue.call(s, g))));
|
53
31
|
}
|
54
32
|
};
|
55
33
|
}
|
56
|
-
|
57
|
-
function
|
34
|
+
r.resizeScale = o;
|
35
|
+
function n(c = [u()]) {
|
58
36
|
return {
|
59
|
-
mouseover: function(
|
60
|
-
|
61
|
-
|
37
|
+
mouseover: function(i, s, p, d) {
|
38
|
+
c.forEach((h) => {
|
39
|
+
h.mouseover(i, s, p, d);
|
62
40
|
});
|
63
41
|
},
|
64
|
-
mouseout: function(
|
65
|
-
|
66
|
-
|
42
|
+
mouseout: function(i, s, p, d) {
|
43
|
+
c.forEach((h) => {
|
44
|
+
h.mouseout(i, s, p, d);
|
67
45
|
});
|
68
46
|
}
|
69
47
|
};
|
70
48
|
}
|
71
|
-
|
72
|
-
function
|
49
|
+
r.compound = n;
|
50
|
+
function u() {
|
73
51
|
return {
|
74
52
|
mouseover: function() {
|
75
53
|
},
|
@@ -77,10 +55,13 @@ var S;
|
|
77
55
|
}
|
78
56
|
};
|
79
57
|
}
|
80
|
-
|
81
|
-
})(
|
82
|
-
const
|
83
|
-
|
58
|
+
r.none = u;
|
59
|
+
})(b || (b = {}));
|
60
|
+
const R = b;
|
61
|
+
function C(r) {
|
62
|
+
return r instanceof l.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
|
+
}
|
64
|
+
class H extends l.SVG {
|
84
65
|
constructor(t) {
|
85
66
|
super(), this.options = {
|
86
67
|
radius: 12,
|
@@ -96,43 +77,47 @@ class C extends h.SVG {
|
|
96
77
|
pointerEvents: "all",
|
97
78
|
// Handle parent default options
|
98
79
|
// ...L.SVG.prototype.options,
|
99
|
-
...
|
100
|
-
...
|
80
|
+
...l.Renderer.prototype.options,
|
81
|
+
...l.Layer.prototype.options
|
101
82
|
}, this._fn = {
|
102
|
-
lng: (
|
103
|
-
lat: (
|
104
|
-
colorValue: (
|
105
|
-
radiusValue: (
|
106
|
-
opacityValue: (
|
107
|
-
fill: (
|
108
|
-
const n = this._fn.colorValue(
|
83
|
+
lng: (o) => l.latLng(this._accessor(o)).lng,
|
84
|
+
lat: (o) => l.latLng(this._accessor(o)).lat,
|
85
|
+
colorValue: (o) => o.length,
|
86
|
+
radiusValue: (o) => o.length,
|
87
|
+
opacityValue: (o) => o.length,
|
88
|
+
fill: (o) => {
|
89
|
+
const n = this._fn.colorValue(o);
|
109
90
|
return n != null ? this._scale.color(n) : "none";
|
110
91
|
}
|
111
92
|
}, this._scale = {
|
112
|
-
color:
|
113
|
-
radius:
|
114
|
-
opacity:
|
115
|
-
}, this._dispatch =
|
93
|
+
color: y(),
|
94
|
+
radius: y(),
|
95
|
+
opacity: y()
|
96
|
+
}, this._dispatch = v("mouseover", "mouseout", "click"), this._hoverHandler = R.none(), this._hexLayout = O().radius(this.options.radius).x(({ point: [o, n] }) => o).y(({ point: [o, n] }) => n), 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(
|
116
97
|
typeof this.options.opacity == "number" ? [this.options.opacity, this.options.opacity] : this.options.opacity
|
117
98
|
).clamp(!0);
|
118
99
|
}
|
100
|
+
_accessor(t) {
|
101
|
+
return t;
|
102
|
+
}
|
119
103
|
/**
|
120
104
|
* Create the SVG container for the hexbins
|
121
105
|
* @private
|
122
106
|
*/
|
123
107
|
_initContainer() {
|
124
|
-
super._initContainer(), this._d3Container =
|
108
|
+
super._initContainer(), this._d3Container = L(this._container).select("g");
|
125
109
|
}
|
126
110
|
/**
|
127
111
|
* Callback made by Leaflet when the layer is added to the map
|
128
112
|
* @param map Reference to the map to which this layer has been added
|
129
113
|
*/
|
130
114
|
onAdd(t) {
|
131
|
-
|
115
|
+
var o;
|
116
|
+
return super.onAdd(t), this._map = t, (o = this._tooltip) == null || o.setLatLng([0, 0]).addTo(t), t.on("moveend", this.redraw, this), this.redraw(), this;
|
132
117
|
}
|
133
118
|
_project(t) {
|
134
|
-
const { x:
|
135
|
-
return [
|
119
|
+
const { x: o, y: n } = this._map.latLngToLayerPoint(t);
|
120
|
+
return [o, n];
|
136
121
|
}
|
137
122
|
/**
|
138
123
|
* Callback made by Leaflet when the layer is removed from the map
|
@@ -146,7 +131,7 @@ class C extends h.SVG {
|
|
146
131
|
* @private
|
147
132
|
*/
|
148
133
|
_destroyContainer() {
|
149
|
-
|
134
|
+
L(this._container).remove();
|
150
135
|
}
|
151
136
|
/**
|
152
137
|
* (Re)draws the hexbins data on the container
|
@@ -155,47 +140,54 @@ class C extends h.SVG {
|
|
155
140
|
redraw() {
|
156
141
|
const t = this;
|
157
142
|
if (!t._map) return;
|
158
|
-
const
|
159
|
-
const
|
160
|
-
return {
|
161
|
-
}), n = this._d3Container.selectAll("g.hexbin").data([this._map.getZoom()], (
|
162
|
-
return "hexbin zoom-" +
|
143
|
+
const o = t._data.map((i) => {
|
144
|
+
const s = t._accessor(i), p = t._project(s);
|
145
|
+
return { coord: s, point: p, data: i };
|
146
|
+
}), n = this._d3Container.selectAll("g.hexbin").data([this._map.getZoom()], (i) => i), c = n.enter().append("g").attr("class", function(i) {
|
147
|
+
return "hexbin zoom-" + i;
|
163
148
|
}).merge(n);
|
164
|
-
n.exit().remove(), this._createHexagons(
|
165
|
-
}
|
166
|
-
_linearlySpace(t,
|
167
|
-
const
|
168
|
-
return Array.from({ length: n }, (
|
169
|
-
}
|
170
|
-
_createHexagons(t,
|
171
|
-
const n = this,
|
172
|
-
({ x:
|
173
|
-
),
|
174
|
-
|
175
|
-
|
149
|
+
n.exit().remove(), this._createHexagons(c, o);
|
150
|
+
}
|
151
|
+
_linearlySpace(t, o, n) {
|
152
|
+
const u = (o - t) / Math.max(n - 1, 1);
|
153
|
+
return Array.from({ length: n }, (c, i) => t + i * u);
|
154
|
+
}
|
155
|
+
_createHexagons(t, o) {
|
156
|
+
const n = this, u = n._map.getSize(), c = n._map.getBounds().pad(n.options.radius * 2 / Math.max(u.x, u.y)), i = n._hexLayout(o).filter(
|
157
|
+
({ x: e, y: a }) => c.contains(n._map.layerPointToLatLng(l.point(e, a)))
|
158
|
+
), s = n._getExtent(i, n._fn.colorValue, n.options.colorScaleExtent), p = n._getExtent(i, n._fn.radiusValue, n.options.radiusScaleExtent), d = n._getExtent(i, n._fn.opacityValue, n.options.opacityScaleExtent), h = this.options.colorDomain ?? n._linearlySpace(
|
159
|
+
s[0],
|
160
|
+
s[1],
|
176
161
|
n._scale.color.range().length
|
177
|
-
),
|
178
|
-
n._scale.color.domain(
|
179
|
-
const
|
180
|
-
|
181
|
-
const
|
182
|
-
|
183
|
-
|
162
|
+
), g = this.options.radiusDomain || p;
|
163
|
+
n._scale.color.domain(h), n._scale.radius.domain(g), n._scale.opacity.domain(d);
|
164
|
+
const m = t.selectAll("g.hexbin-container").data(i, ({ x: e, y: a }) => `${e}:${a}`);
|
165
|
+
m.select("path.hexbin-hexagon").transition().duration(n.options.duration).attr("fill", n._fn.fill.bind(n)).attr("fill-opacity", (e) => n._scale.opacity(n._fn.opacityValue.call(n, e))).attr("stroke-opacity", (e) => n._scale.opacity(n._fn.opacityValue.call(n, e))).attr("d", (e) => n._hexLayout.hexagon(n._scale.radius(n._fn.radiusValue.call(n, e))));
|
166
|
+
const x = m.enter().append("g").attr("class", "hexbin-container").style("pointer-events", n.options.pointerEvents);
|
167
|
+
x.on("mouseover", function(e, a) {
|
168
|
+
L(this).raise();
|
184
169
|
});
|
185
|
-
const
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
170
|
+
const E = x.append("path").attr("class", "hexbin-hexagon").attr("transform", ({ x: e, y: a }) => `translate(${e},${a})`).attr("d", () => n._hexLayout.hexagon(n._scale.radius.range()[0])).attr("fill", n._fn.fill.bind(n)).attr("fill-opacity", 0.01).attr("stroke-opacity", 0.01).style("pointer-events", "all");
|
171
|
+
E.transition().duration(n.options.duration).attr("fill-opacity", (e) => n._scale.opacity(n._fn.opacityValue.call(n, e))).attr("stroke-opacity", (e) => n._scale.opacity(n._fn.opacityValue.call(n, e))).attr("d", (e) => n._hexLayout.hexagon(n._scale.radius(n._fn.radiusValue.call(n, e)))).style("pointer-events", "all"), x.append("path").attr("class", "hexbin-grid").attr("transform", ({ x: e, y: a }) => `translate(${e},${a})`).attr("d", () => n._hexLayout.hexagon(n.options.radius)).attr("fill", "none").attr("stroke", "none"), E.on("mouseover", function(e, a) {
|
172
|
+
var f, V;
|
173
|
+
(f = n._tooltipOptions) != null && f.content && ((V = n._tooltip) == null || V.setContent(
|
174
|
+
typeof n._tooltipOptions.content == "function" ? n._tooltipOptions.content(a) : n._tooltipOptions.content
|
175
|
+
).setLatLng(
|
176
|
+
n._map.layerPointToLatLng(l.point(a.x, a.y))
|
177
|
+
).openOn(n._map)), n._hoverHandler.mouseover(this, n, e, a), n._dispatch.call("mouseover", this, a, n, e), this.classList.add("hover");
|
178
|
+
}).on("mouseout", function(e, a) {
|
179
|
+
var f;
|
180
|
+
(f = n._tooltip) == null || f.close(), n._hoverHandler.mouseout(this, n, e, a), n._dispatch.call("mouseout", this, a, n, e), this.classList.remove("hover");
|
181
|
+
}).on("click", function(e, a) {
|
182
|
+
const f = n._map.layerPointToLatLng(l.point(a.x, a.y));
|
183
|
+
n._dispatch.call("click", this, a, f, n, e), e.stopPropagation();
|
192
184
|
});
|
193
|
-
const
|
194
|
-
|
185
|
+
const S = m.exit();
|
186
|
+
S.select("path.hexbin-hexagon").transition().duration(n.options.duration).attr("fill-opacity", 0).attr("stroke-opacity", 0).attr("d", (e) => n._hexLayout.hexagon(0)), S.transition().duration(n.options.duration).remove();
|
195
187
|
}
|
196
|
-
_getExtent(t,
|
197
|
-
let
|
198
|
-
return (
|
188
|
+
_getExtent(t, o, n) {
|
189
|
+
let u = T(t, o.bind(this));
|
190
|
+
return (u[0] === void 0 || u[1] === void 0) && (u = [0, 0]), n[0] != null && (u[0] = n[0]), n[1] != null && (u[1] = n[1]), u;
|
199
191
|
}
|
200
192
|
radius(t) {
|
201
193
|
return t === void 0 ? this.options.radius : (this.options.radius = t, this._hexLayout.radius(t), this.options.radiusRange == null && this._scale.radius.range([this.options.radius, this.options.radius]).clamp(!0), this);
|
@@ -242,8 +234,9 @@ class C extends h.SVG {
|
|
242
234
|
fill(t) {
|
243
235
|
return t === void 0 ? this._fn.fill : (this._fn.fill = t, this);
|
244
236
|
}
|
245
|
-
|
246
|
-
|
237
|
+
// Implementation
|
238
|
+
data(t, o) {
|
239
|
+
return t === void 0 ? this._data : (!C(t[0]) && !o && 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 = o ?? ((n) => n), this.redraw(), this);
|
247
240
|
}
|
248
241
|
/*
|
249
242
|
* Getter for the event dispatcher
|
@@ -252,33 +245,47 @@ class C extends h.SVG {
|
|
252
245
|
return this._dispatch;
|
253
246
|
}
|
254
247
|
hoverHandler(t) {
|
255
|
-
return t === void 0 ? this._hoverHandler : (this._hoverHandler = t ??
|
248
|
+
return t === void 0 ? this._hoverHandler : (this._hoverHandler = t ?? R.none(), this.redraw(), this);
|
249
|
+
}
|
250
|
+
// Cannot overload bindTooltip() with data dependant content
|
251
|
+
tooltip(t) {
|
252
|
+
return this._tooltipOptions = t, this._tooltip ? this._tooltip.options = t.options ?? {} : this._tooltip = l.tooltip(t.options), this;
|
253
|
+
}
|
254
|
+
getTooltip() {
|
255
|
+
return this._tooltip;
|
256
|
+
}
|
257
|
+
bindTooltip(t, o) {
|
258
|
+
return t instanceof l.Tooltip ? (this._tooltip = t, this._map && this._tooltip.setLatLng([0, 0]).addTo(this._map)) : this._tooltip = l.tooltip(o).setContent(t), this;
|
259
|
+
}
|
260
|
+
unbindTooltip() {
|
261
|
+
var t;
|
262
|
+
return (t = this._tooltip) == null || t.remove(), this._tooltip = void 0, this;
|
256
263
|
}
|
257
264
|
/*
|
258
265
|
* Returns an array of the points in the path, or nested arrays of points in case of multi-polyline.
|
259
266
|
*/
|
260
267
|
getLatLngs() {
|
261
268
|
const t = this;
|
262
|
-
return this._data.map(function(
|
263
|
-
return
|
269
|
+
return this._data.map(function(o) {
|
270
|
+
return l.latLng(t._fn.lat(o), t._fn.lng(o));
|
264
271
|
});
|
265
272
|
}
|
266
273
|
/*
|
267
274
|
* Get path geometry as GeoJSON
|
268
275
|
*/
|
269
276
|
toGeoJSON() {
|
270
|
-
return
|
277
|
+
return l.GeoJSON.getFeature(this, {
|
271
278
|
type: "MultiPoint",
|
272
|
-
coordinates:
|
279
|
+
coordinates: l.GeoJSON.latLngsToCoords(this.getLatLngs(), 0)
|
273
280
|
});
|
274
281
|
}
|
275
282
|
}
|
276
|
-
function
|
277
|
-
return new
|
283
|
+
function w(r) {
|
284
|
+
return new H(r);
|
278
285
|
}
|
279
286
|
export {
|
280
|
-
|
281
|
-
|
282
|
-
|
287
|
+
R as HexbinHoverHandler,
|
288
|
+
H as HexbinLayer,
|
289
|
+
w as hexbinLayer
|
283
290
|
};
|
284
291
|
//# sourceMappingURL=index.es.js.map
|
package/dist/index.es.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.es.js","sources":["../src/HexbinHoverHandler.ts","../src/HexbinLayer.ts"],"sourcesContent":["import * as d3 from 'd3';\nimport type { HexbinData } from './HexbinLayer';\nimport { type HexbinLayer } from './HexbinLayer';\n\nexport interface HexbinHoverHandler {\n mouseover(svg: SVGPathElement, hexLayer: HexbinLayer, event: MouseEvent, data: HexbinData[]): void;\n mouseout(svg: SVGPathElement, hexLayer: HexbinLayer, event: MouseEvent, data: HexbinData[]): void;\n}\n\nexport namespace HexbinHoverHandler {\n\n interface TooltipOptions {\n tooltipContent: (d: HexbinData[], hexLayer: HexbinLayer) => string;\n }\n\n export function tooltip(options: TooltipOptions = { tooltipContent(d) { return `Count: ${d.length}` } }): HexbinHoverHandler {\n\n // Generate the tooltip\n const tooltip = d3.select('body').append('div')\n .attr('class', 'hexbin-tooltip')\n .style('z-index', 9999)\n .style('pointer-events', 'none')\n .style('visibility', 'hidden')\n .style('position', 'fixed');\n\n tooltip.append('div').attr('class', 'tooltip-content');\n\n // return the handler instance\n return {\n mouseover: function (svg: SVGPathElement, hexLayer: HexbinLayer, event: MouseEvent, data: HexbinData[]) {\n const gCoords = d3.pointer(event);\n\n tooltip\n .style('visibility', 'visible')\n .html(options.tooltipContent(data, hexLayer));\n\n\n const div = tooltip.node();\n if (!div) {\n console.warn(\"Leaflet hexbin: tooltip node not found\");\n return\n }\n const h = div.clientHeight, w = div.clientWidth;\n\n tooltip\n .style('top', event.clientY - gCoords[1] - h - 16 + 'px')\n .style('left', event.clientX - gCoords[0] - w / 2 + 'px');\n\n },\n mouseout: function (svg, hexLayer: HexbinLayer, event: MouseEvent, data: HexbinData[]) {\n tooltip\n .style('visibility', 'hidden')\n .html();\n }\n };\n\n }\n\n export function resizeFill(): HexbinHoverHandler {\n return {\n mouseover: function (svg: SVGPathElement, hexLayer: HexbinLayer, event: MouseEvent, data: HexbinData[]) {\n const o = d3.select<HTMLElement | null, HexbinData[]>(svg.parentElement);\n o.select('path.hexbin-hexagon')\n .attr('d', function (d) {\n return hexLayer._hexLayout.hexagon(hexLayer.options.radius);\n });\n },\n mouseout: function (svg: SVGPathElement, hexLayer: HexbinLayer, event: MouseEvent, data: HexbinData[]) {\n const o = d3.select<HTMLElement | null, HexbinData[]>(svg.parentElement);\n o.select<SVGPathElement>('path.hexbin-hexagon')\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 {\n\n // return the handler instance\n return {\n mouseover: function (svg, hexLayer, event, data) {\n const o = d3.select<HTMLElement | null, HexbinData[]>(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[]>(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(handlers: HexbinHoverHandler[] = [none()]): HexbinHoverHandler {\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 {\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\nexport interface HexbinLayerConfig {\n /**\n * Hex grid cell radius in pixels.\n * This value should be a positive number.\n * This radius controls the radius of the hexagons used to bin the data\n * but not necessarily to draw each individual hexbin.\n * @default 12\n */\n radius?: number,\n /**\n * Sets the opacity on the hexbin layer.\n * This value should be a number between 0 and 1.\n * If an array is provided, the first element is the minimum opacity and the second is the maximum.\n * @default 0.6\n */\n opacity?: number | [number, number],\n /**\n * Opacity scale extent: [min, max] domain for opacity interpolation.\n * @default [1, undefined]\n */\n opacityScaleExtent?: [number, number | undefined],\n /**\n * Duration of transition in milliseconds.\n * @default 200\n */\n duration?: number,\n\n /**\n * Color scale extent: [min, max] domain for color interpolation.\n * @default [1, undefined]\n */\n colorScaleExtent?: [number, number | undefined],\n /**\n * This is used to override the default behavior, which is to derive the color domain from the data.\n * Normally, you can tweak the generation of the color domain using the colorScaleExtent option.\n * However, if you want to set a completely custom domain, you can provide it as an array of values with this option.\n * The array of values will be passed directly into the domain of the color scale before rendering.\n * @default null\n */\n colorDomain?: number[] | null\n /**\n * Color range used to fill the hexbins.\n * @default ['#f7fbff', '#08306b']\n */\n colorRange?: string[],\n\n /**\n * Radius scale extent: [min, max] domain for radius interpolation.\n * @default [1, undefined]\n */\n radiusScaleExtent?: [number, number | undefined],\n /**\n * This is used to override the default behavior, which is to derive the radius domain from the data.\n * Normally, you can tweak the generation of the radius domain using the radiusScaleExtent option.\n * However, if you want to set a completely custom domain, you can provide it as an array of values with this option.\n * The array of values will be passed directly into the domain of the radius scale before rendering.\n * @default null\n */\n radiusDomain?: number[] | null\n /**\n * Sets the range of the radius scale used to size the hexbins.\n * @default hex grid cell radius\n */\n radiusRange?: [number, number] | null,\n\n /**\n * You should only modify this config option if you want to change the mouse event behavior on hexbins. This will modify when the events are propagated based on the visibility state and/or part of the hexbin being hovered.\n * @default 'all'\n */\n pointerEvents?: string\n}\n\n/**\n * Hexbin data attached to each hexagon, once binned.\n */\nexport type HexbinData = {\n o: L.LatLngExpression;\n point: Readonly<[number, 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 extends L.SVG implements HexbinLayer {\n options: Required<HexbinLayerConfig> & L.RendererOptions = {\n radius: 12,\n opacity: 0.6,\n duration: 200,\n\n colorScaleExtent: [1, undefined],\n radiusScaleExtent: [1, undefined],\n opacityScaleExtent: [1, undefined],\n colorDomain: null,\n radiusDomain: null,\n colorRange: ['#f7fbff', '#08306b'],\n radiusRange: null,\n\n pointerEvents: 'all',\n // Handle parent default options\n // ...L.SVG.prototype.options,\n ...L.Renderer.prototype.options,\n ...L.Layer.prototype.options\n }\n _fn = {\n lng: (d: L.LatLngExpression) => L.latLng(d).lng,\n lat: (d: L.LatLngExpression) => L.latLng(d).lat,\n colorValue: (d: HexbinData[]) => d.length,\n radiusValue: (d: HexbinData[]) => d.length,\n opacityValue: (d: HexbinData[]) => d.length,\n fill: (d: HexbinData[]) => {\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 = HexbinHoverHandler.none();\n\n // Create the hex layout\n _hexLayout = hexbin<HexbinData>()\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<L.LatLngExpression>()\n\n declare _map: L.Map;\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 /**\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 // 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>((d) => {\n const point = that._project(d);\n return { o: d, point };\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[]) {\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>>('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 const c = select<SVGGElement, HexbinBin<HexbinData>>(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, d: MouseEvent, i) {\n thisLayer._hoverHandler.mouseover(this, thisLayer as HexbinLayer, d, i);\n thisLayer._dispatch.call('mouseover', this, d, i);\n this.classList.add('hover')\n })\n .on('mouseout', function (this: SVGPathElement, d: MouseEvent, i) {\n thisLayer._hoverHandler.mouseout(this, thisLayer as HexbinLayer, d, i);\n thisLayer._dispatch.call('mouseout', this, thisLayer as HexbinLayer, d, i);\n this.classList.remove('hover')\n })\n .on('click', function (this, d, i) {\n thisLayer._dispatch.call('click', this, thisLayer as HexbinLayer, d, i);\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>[],\n valueFn: (d: HexbinBin<HexbinData>) => number,\n scaleExtent: [number, number | undefined]\n ): [number, number] {\n\n // Determine the extent of the values\n let ext = extent<HexbinBin<HexbinData>, 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: L.LatLngExpression) => number;\n lng(v: (d: L.LatLngExpression) => number): this;\n lng(v?: (d: L.LatLngExpression) => number) {\n if (v === undefined) { return this._fn.lng; }\n this._fn.lng = v;\n\n return this;\n }\n\n lat(): (d: L.LatLngExpression) => number;\n lat(v: (d: L.LatLngExpression) => number): this;\n lat(v?: (d: L.LatLngExpression) => number) {\n if (v === undefined) { return this._fn.lat; }\n this._fn.lat = v;\n\n return this;\n }\n\n colorValue(): (d: HexbinData[]) => number;\n colorValue(v: (d: HexbinData[]) => number): this;\n colorValue(v?: (d: HexbinData[]) => number) {\n if (v === undefined) { return this._fn.colorValue; }\n this._fn.colorValue = v;\n\n return this;\n }\n\n radiusValue(): (d: HexbinData[]) => number;\n radiusValue(v: (d: HexbinData[]) => number): this;\n radiusValue(v?: (d: HexbinData[]) => number) {\n if (v === undefined) { return this._fn.radiusValue; }\n this._fn.radiusValue = v;\n\n return this;\n }\n\n fill(): (d: HexbinData[]) => string;\n fill(v: (d: HexbinData[]) => string): this;\n fill(v?: (d: HexbinData[]) => string) {\n if (v === undefined) { return this._fn.fill; }\n this._fn.fill = v;\n\n return this;\n }\n\n data(): L.LatLngExpression[];\n data(v: L.LatLngExpression[]): this;\n data(v?: L.LatLngExpression[]): this | L.LatLngExpression[] {\n if (v === undefined) { return this._data; }\n this._data = (null != v) ? v : [];\n this.redraw();\n\n return this;\n }\n\n /*\n * Getter for the event dispatcher\n */\n dispatch() { return this._dispatch }\n\n hoverHandler(): HexbinHoverHandler;\n hoverHandler(v: HexbinHoverHandler): this;\n hoverHandler(v?: HexbinHoverHandler): this | HexbinHoverHandler {\n if (v === undefined) { return this._hoverHandler; }\n this._hoverHandler = (null != v) ? v : HexbinHoverHandler.none();\n\n this.redraw();\n\n return this;\n }\n\n /*\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(options?: HexbinLayerConfig) {\n return new HexbinLayer(options);\n}\n\n\n"],"names":["HexbinHoverHandler","tooltip","options","d","d3","svg","hexLayer","event","data","gCoords","div","h","w","resizeFill","resizeScale","radiusScale","compound","handlers","none","HexbinHoverHandler$1","HexbinLayer","L","val","scaleLinear","dispatch","hexbin","x","_","y","select","map","latlng","that","point","join","enterUpdate","from","to","length","step","i","g","thisLayer","size","bounds","bins","colorExtent","radiusExtent","opacityExtent","colorDomain","radiusDomain","container","hexagons","exit","valueFn","scaleExtent","ext","extent","v","hexbinLayer"],"mappings":"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"}
|
1
|
+
{"version":3,"file":"index.es.js","sources":["../src/HexbinHoverHandler.ts","../src/HexbinLayer.ts"],"sourcesContent":["import * as d3 from 'd3';\nimport type { HexbinData } from './HexbinLayer';\nimport { type HexbinLayer } from './HexbinLayer';\n\nexport interface HexbinHoverHandler<Data> {\n mouseover(svg: SVGPathElement, hexLayer: HexbinLayer<Data>, event: MouseEvent, data: HexbinData<Data>[]): void;\n mouseout(svg: SVGPathElement, hexLayer: HexbinLayer<Data>, event: MouseEvent, data: HexbinData<Data>[]): void;\n}\n\nexport namespace HexbinHoverHandler {\n\n export function resizeFill(): HexbinHoverHandler<any> {\n return {\n mouseover: function (svg: SVGPathElement, hexLayer: HexbinLayer<any>, event: MouseEvent, data: HexbinData<any>[]) {\n const o = d3.select<HTMLElement | null, HexbinData<any>[]>(svg.parentElement);\n o.select('path.hexbin-hexagon')\n .transition().duration(hexLayer.options.duration)\n .attr('d', function (d) {\n return hexLayer._hexLayout.hexagon(hexLayer.options.radius);\n });\n },\n mouseout: function (svg: SVGPathElement, hexLayer: HexbinLayer<any>, event: MouseEvent, data: HexbinData<any>[]) {\n const o = d3.select<HTMLElement | null, HexbinData<any>[]>(svg.parentElement);\n o.select<SVGPathElement>('path.hexbin-hexagon')\n .transition().duration(hexLayer.options.duration)\n .attr('d', function (d) {\n return hexLayer._hexLayout.hexagon(hexLayer._scale.radius(hexLayer._fn.radiusValue.call(hexLayer, d)));\n });\n }\n };\n\n }\n\n export interface ResizeScaleOptions {\n radiusScale?: number;\n duration?: number;\n }\n\n export function resizeScale(radiusScale: number = 1.5): HexbinHoverHandler<any> {\n\n // return the handler instance\n return {\n mouseover: function (svg, hexLayer, event, data) {\n const o = d3.select<HTMLElement | null, HexbinData<any>[]>(svg.parentElement);\n o.select('path.hexbin-hexagon')\n .transition().duration(hexLayer.options.duration)\n .attr('d', function () {\n return hexLayer._hexLayout.hexagon(hexLayer._scale.radius.range()[1] * (radiusScale));\n });\n },\n mouseout: function (svg, hexLayer, event, data) {\n const o = d3.select<HTMLElement | null, HexbinData<any>[]>(svg.parentElement!);\n o.select('path.hexbin-hexagon')\n .transition().duration(hexLayer.options.duration)\n .attr('d', (d) => {\n return hexLayer._hexLayout.hexagon(hexLayer._scale.radius(hexLayer._fn.radiusValue.call(hexLayer, d)));\n });\n }\n };\n }\n\n\n export function compound<Data>(handlers: HexbinHoverHandler<Data>[] = [none()]): HexbinHoverHandler<Data> {\n return {\n mouseover: function (svg, hexLayer, event, data) {\n handlers!.forEach((h) => { h.mouseover(svg, hexLayer, event, data); });\n },\n mouseout: function (svg, hexLayer, event, data) {\n handlers!.forEach((h) => { h.mouseout(svg, hexLayer, event, data); });\n }\n };\n }\n\n export function none(): HexbinHoverHandler<any> {\n return {\n mouseover: function () { },\n mouseout: function () { }\n };\n }\n\n}\nexport default HexbinHoverHandler\n","import { scaleLinear, dispatch, select, extent } from 'd3';\nimport { hexbin, type HexbinBin } from 'd3-hexbin';\nimport * as L from 'leaflet';\nimport HexbinHoverHandler from './HexbinHoverHandler';\n\n// Need to expose some methods from L.SVG\ndeclare module 'leaflet' {\n interface SVG {\n _initContainer(): void;\n _container: SVGElementTagNameMap['svg']\n }\n}\n\ntype TooltipOptions<Data> = {\n options?: L.TooltipOptions,\n content?: L.Content | ((d: HexbinData<Data>[]) => L.Content)\n}\n\nexport interface HexbinLayerConfig {\n /**\n * Hex grid cell radius in pixels.\n * This value should be a positive number.\n * This radius controls the radius of the hexagons used to bin the data\n * but not necessarily to draw each individual hexbin.\n * @default 12\n */\n radius?: number,\n /**\n * Sets the opacity on the hexbin layer.\n * This value should be a number between 0 and 1.\n * If an array is provided, the first element is the minimum opacity and the second is the maximum.\n * @default 0.6\n */\n opacity?: number | [number, number],\n /**\n * Opacity scale extent: [min, max] domain for opacity interpolation.\n * @default [1, undefined]\n */\n opacityScaleExtent?: [number, number | undefined],\n /**\n * Duration of transition in milliseconds.\n * @default 200\n */\n duration?: number,\n\n /**\n * Color scale extent: [min, max] domain for color interpolation.\n * @default [1, undefined]\n */\n colorScaleExtent?: [number, number | undefined],\n /**\n * This is used to override the default behavior, which is to derive the color domain from the data.\n * Normally, you can tweak the generation of the color domain using the colorScaleExtent option.\n * However, if you want to set a completely custom domain, you can provide it as an array of values with this option.\n * The array of values will be passed directly into the domain of the color scale before rendering.\n * @default null\n */\n colorDomain?: number[] | null\n /**\n * Color range used to fill the hexbins.\n * @default ['#f7fbff', '#08306b']\n */\n colorRange?: string[],\n\n /**\n * Radius scale extent: [min, max] domain for radius interpolation.\n * @default [1, undefined]\n */\n radiusScaleExtent?: [number, number | undefined],\n /**\n * This is used to override the default behavior, which is to derive the radius domain from the data.\n * Normally, you can tweak the generation of the radius domain using the radiusScaleExtent option.\n * However, if you want to set a completely custom domain, you can provide it as an array of values with this option.\n * The array of values will be passed directly into the domain of the radius scale before rendering.\n * @default null\n */\n radiusDomain?: number[] | null\n /**\n * Sets the range of the radius scale used to size the hexbins.\n * @default hex grid cell radius\n */\n radiusRange?: [number, number] | null,\n\n /**\n * You should only modify this config option if you want to change the mouse event behavior on hexbins. This will modify when the events are propagated based on the visibility state and/or part of the hexbin being hovered.\n * @default 'all'\n */\n pointerEvents?: string\n}\n\n/**\n * Hexbin data attached to each hexagon, once binned.\n */\nexport type HexbinData<Data> = {\n data: Data;\n coord: L.LatLngExpression;\n point: Readonly<[number, number]>;\n}\n\n\nfunction isLatLngExpression(d: any): d is L.LatLngExpression {\n return (\n d instanceof L.LatLng ||\n (typeof d === 'object' && \"lat\" in d && \"lng\" in d) ||\n (Array.isArray(d) && d.length === 2 && typeof d[0] === 'number' && typeof d[1] === 'number')\n )\n}\n\n/**\n * Instantiate a hexbin layer.\n * Extends L.SVG to take advantage of built-in zoom animations.\n */\nexport class HexbinLayer<Data = L.LatLngExpression> extends L.SVG {\n options: Required<HexbinLayerConfig> & L.RendererOptions = {\n radius: 12,\n opacity: 0.6,\n duration: 200,\n\n colorScaleExtent: [1, undefined],\n radiusScaleExtent: [1, undefined],\n opacityScaleExtent: [1, undefined],\n colorDomain: null,\n radiusDomain: null,\n colorRange: ['#f7fbff', '#08306b'],\n radiusRange: null,\n\n pointerEvents: 'all',\n // Handle parent default options\n // ...L.SVG.prototype.options,\n ...L.Renderer.prototype.options,\n ...L.Layer.prototype.options\n }\n _fn = {\n lng: (d: Data) => L.latLng(this._accessor(d)).lng,\n lat: (d: Data) => L.latLng(this._accessor(d)).lat,\n colorValue: (d: HexbinData<Data>[]) => d.length,\n radiusValue: (d: HexbinData<Data>[]) => d.length,\n opacityValue: (d: HexbinData<Data>[]) => d.length,\n fill: (d: HexbinData<Data>[]) => {\n const val = this._fn.colorValue(d);\n return (null != val) ? this._scale.color(val) : 'none';\n }\n }\n // Set up the customizable scale\n _scale = {\n color: scaleLinear<string, string>(),\n radius: scaleLinear(),\n opacity: scaleLinear()\n };\n\n // Set up the Dispatcher for managing events and callbacks\n _dispatch = dispatch<SVGPathElement>('mouseover', 'mouseout', 'click');\n\n // Set up the default hover handler\n _hoverHandler: HexbinHoverHandler<Data> = HexbinHoverHandler.none();\n\n // Create the hex layout\n _hexLayout = hexbin<HexbinData<Data>>()\n .radius(this.options.radius)\n .x(({ point: [x, _] }) => x)\n .y(({ point: [_, y] }) => y);\n\n // Initialize the data array to be empty\n _data = Array<Data>()\n\n\n declare _map: L.Map;\n\n _tooltipOptions: TooltipOptions<Data> = {};\n declare _tooltip: L.Tooltip | undefined;\n\n declare _container: SVGElementTagNameMap['svg'];\n\n // declare _container: HTMLElement;\n declare _d3Container: d3.Selection<SVGGElement, unknown, null, undefined>;\n\n public constructor(options?: HexbinLayerConfig) {\n super()\n // L.SVG.prototype.initialize.call(this, options);\n this.options = { ...this.options, ...options };\n this._scale.color\n .range(this.options.colorRange)\n .clamp(true);\n\n this._scale.radius\n .range(this.options.radiusRange ?? [this.options.radius, this.options.radius])\n .clamp(true);\n\n this._scale.opacity\n .range(\n typeof this.options.opacity === 'number'\n ? [this.options.opacity, this.options.opacity]\n : this.options.opacity\n ).clamp(true);\n\n };\n\n _accessor(d: Data) {\n return d as L.LatLngExpression;\n }\n\n /**\n * Create the SVG container for the hexbins\n * @private\n */\n _initContainer() {\n super._initContainer();\n this._d3Container = select(this._container).select<SVGElementTagNameMap['g']>('g');\n }\n /**\n * Callback made by Leaflet when the layer is added to the map\n * @param map Reference to the map to which this layer has been added\n */\n onAdd(map: L.Map): this {\n // Call super.onAdd to properly initialize the SVG pane\n super.onAdd(map)\n\n // Store a reference to the map for later use\n this._map = map;\n this._tooltip?.setLatLng([0, 0]).addTo(map);\n // Redraw on moveend\n map.on('moveend', this.redraw, this);\n // Initial draw\n this.redraw();\n return this\n }\n\n _project(latlng: L.LatLngExpression) {\n const { x, y } = this._map.latLngToLayerPoint(latlng);\n return [x, y] as const;\n }\n\n /**\n * Callback made by Leaflet when the layer is removed from the map\n * @param map Reference to the map from which this layer is being removed\n */\n onRemove(map: L.Map): this {\n // Destroy the svg container\n this._destroyContainer();\n // Remove events\n map.off('moveend', this.redraw, this);\n return this\n }\n\n /**\n * Clean up the svg container\n * @private\n */\n _destroyContainer() {\n select(this._container).remove();\n }\n\n /**\n * (Re)draws the hexbins data on the container\n * @private\n */\n redraw() {\n const that = this;\n\n if (!that._map) return\n\n // Generate the mapped version of the data\n const data = that._data.map<HexbinData<Data>>((d: Data) => {\n const coord = that._accessor(d)\n const point = that._project(coord);\n return { coord: coord, point, data: d };\n });\n\n // Select the hex group for the current zoom level. This has\n // the effect of recreating the group if the zoom level has changed\n const join = this._d3Container.selectAll<SVGGElement, number>('g.hexbin')\n .data<number>([this._map.getZoom()], (d) => d);\n\n // enter\n const enter = join.enter().append('g')\n .attr('class', function (d) { return 'hexbin zoom-' + d; });\n\n // enter + update\n const enterUpdate = enter.merge(join);\n\n // exit\n join.exit().remove();\n\n // add the hexagons to the select\n this._createHexagons(enterUpdate, data);\n\n }\n\n _linearlySpace(from: number, to: number, length: number): number[] {\n const step = (to - from) / Math.max(length - 1, 1);\n return Array.from({ length }, (_, i) => from + (i * step));\n }\n\n _createHexagons(g: d3.Selection<SVGGElement, number, SVGGElement, unknown>, data: HexbinData<Data>[]) {\n const thisLayer = this;\n\n // Create the bins using the hexbin layout\n\n // Generate the map bounds (to be used to filter the hexes to what is visible)\n const size = thisLayer._map.getSize();\n const bounds = thisLayer._map.getBounds().pad(thisLayer.options.radius * 2 / Math.max(size.x, size.y));\n\n const bins = thisLayer._hexLayout(data).filter(\n ({ x, y }) => bounds.contains(thisLayer._map.layerPointToLatLng(L.point(x, y)))\n );\n\n // Derive the extents of the data values for each dimension\n const colorExtent = thisLayer._getExtent(bins, thisLayer._fn.colorValue, thisLayer.options.colorScaleExtent);\n const radiusExtent = thisLayer._getExtent(bins, thisLayer._fn.radiusValue, thisLayer.options.radiusScaleExtent);\n const opacityExtent = thisLayer._getExtent(bins, thisLayer._fn.opacityValue, thisLayer.options.opacityScaleExtent);\n\n // Match the domain cardinality to that of the color range, to allow for a polylinear scale\n const colorDomain = this.options.colorDomain\n ?? thisLayer._linearlySpace(\n colorExtent[0],\n colorExtent[1],\n thisLayer._scale.color.range().length\n );\n const radiusDomain = this.options.radiusDomain || radiusExtent;\n\n // Set the scale domains\n thisLayer._scale.color.domain(colorDomain);\n thisLayer._scale.radius.domain(radiusDomain);\n thisLayer._scale.opacity.domain(opacityExtent);\n\n\n /*\n * Join\n * Join the Hexagons to the data\n * Use a deterministic id for tracking bins based on position\n */\n const join = g.selectAll<SVGGElement, HexbinBin<HexbinData<Data>>>('g.hexbin-container')\n .data(bins, ({ x, y }) => `${x}:${y}`);\n\n\n /*\n * Update\n * Set the fill and opacity on a transition\n * opacity is re-applied in case the enter transition was cancelled\n * the path is applied as well to resize the bins\n */\n join.select<SVGPathElement>('path.hexbin-hexagon')\n .transition().duration(thisLayer.options.duration)\n .attr('fill', thisLayer._fn.fill.bind(thisLayer))\n .attr('fill-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('stroke-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('d', (d) => {\n return thisLayer._hexLayout.hexagon(thisLayer._scale.radius(thisLayer._fn.radiusValue.call(thisLayer, d)));\n });\n\n\n /*\n * Enter\n * Establish the path, size, fill, and the initial opacity\n * Transition to the final opacity and size\n */\n const container = join.enter().append('g').attr('class', 'hexbin-container')\n .style('pointer-events', thisLayer.options.pointerEvents);\n\n\n container.on('mouseover', function (this: SVGGElement, d: MouseEvent, i) {\n // Bring container to foreground by re-appending it to the DOM\n select<SVGGElement, HexbinBin<HexbinData<Data>>>(this).raise();\n })\n\n const hexagons = container.append('path').attr('class', 'hexbin-hexagon')\n .attr('transform', ({ x, y }) => `translate(${x},${y})`)\n .attr('d', () => thisLayer._hexLayout.hexagon(thisLayer._scale.radius.range()[0]))\n // .attr('d', (data, length) => thisLayer._hexLayout.hexagon(thisLayer._scale.radius(data.length)))\n .attr('fill', thisLayer._fn.fill.bind(thisLayer))\n .attr('fill-opacity', 0.01)\n .attr('stroke-opacity', 0.01)\n .style('pointer-events', 'all');\n\n hexagons.transition().duration(thisLayer.options.duration)\n .attr('fill-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('stroke-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('d', (d) => thisLayer._hexLayout.hexagon(thisLayer._scale.radius(thisLayer._fn.radiusValue.call(thisLayer, d))))\n .style('pointer-events', 'all');\n\n // Grid\n const gridEnter = container.append('path').attr('class', 'hexbin-grid')\n .attr('transform', ({ x, y }) => `translate(${x},${y})`)\n .attr('d', () => thisLayer._hexLayout.hexagon(thisLayer.options.radius))\n .attr('fill', 'none')\n .attr('stroke', 'none')\n\n\n // Grid enter-update\n hexagons.on('mouseover', function (this: SVGPathElement, ev: MouseEvent, data) {\n if (thisLayer._tooltipOptions?.content) {\n thisLayer._tooltip\n ?.setContent(\n typeof thisLayer._tooltipOptions.content === \"function\"\n ? thisLayer._tooltipOptions.content(data)\n : thisLayer._tooltipOptions.content\n )\n .setLatLng(\n thisLayer._map.layerPointToLatLng(L.point(data.x, data.y))\n )\n .openOn(thisLayer._map);\n }\n thisLayer._hoverHandler.mouseover(this, thisLayer, ev, data);\n thisLayer._dispatch.call('mouseover', this, data, thisLayer, ev);\n this.classList.add('hover')\n })\n .on('mouseout', function (this: SVGPathElement, ev: MouseEvent, data) {\n thisLayer._tooltip?.close()\n thisLayer._hoverHandler.mouseout(this, thisLayer, ev, data);\n thisLayer._dispatch.call('mouseout', this, data, thisLayer, ev);\n this.classList.remove('hover')\n })\n .on('click', function (this, ev: MouseEvent, data) {\n const latLng = thisLayer._map.layerPointToLatLng(L.point(data.x, data.y));\n thisLayer._dispatch.call('click', this, data, latLng, thisLayer, ev);\n ev.stopPropagation()\n });\n\n\n // Exit\n const exit = join.exit();\n\n exit.select('path.hexbin-hexagon')\n .transition().duration(thisLayer.options.duration)\n .attr('fill-opacity', 0)\n .attr('stroke-opacity', 0)\n .attr('d', (d) => thisLayer._hexLayout.hexagon(0));\n\n exit.transition().duration(thisLayer.options.duration).remove();\n\n }\n\n _getExtent(\n bins: HexbinBin<HexbinData<Data>>[],\n valueFn: (d: HexbinBin<HexbinData<Data>>) => number,\n scaleExtent: [number, number | undefined]\n ): [number, number] {\n\n // Determine the extent of the values\n let ext = extent<HexbinBin<HexbinData<Data>>, number>(bins, valueFn.bind(this));\n // If either's null, initialize them to 0\n if (ext[0] === undefined || ext[1] === undefined) {\n ext = [0, 0]\n }\n\n // Now apply the optional clipping of the extent\n if (undefined != scaleExtent[0]) ext[0] = scaleExtent[0];\n if (undefined != scaleExtent[1]) ext[1] = scaleExtent[1];\n\n return ext as [number, number]\n }\n\n // ------------------------------------\n // Public API\n // ------------------------------------\n\n radius(): number;\n radius(v: number): this;\n radius(v?: number): this | number {\n if (v === undefined) return this.options.radius;\n\n this.options.radius = v;\n this._hexLayout.radius(v);\n\n if (null == this.options.radiusRange) {\n this._scale.radius.range([this.options.radius, this.options.radius]).clamp(true);\n }\n\n return this;\n }\n\n opacity(): number | [number, number];\n opacity(v: number | [number, number]): this;\n opacity(v?: number | [number, number]): this | number | [number, number] {\n if (v === undefined) return this.options.opacity\n this.options.opacity = v;\n this._scale.opacity.range(typeof v === 'number' ? [v, v] : v).clamp(true);\n\n return this;\n }\n\n duration(): number;\n duration(v: number): this;\n duration(v?: number): this | number {\n if (v === undefined) return this.options.duration\n this.options.duration = v\n\n return this;\n }\n\n colorScaleExtent(): [number, number | undefined];\n colorScaleExtent(v: [number, number | undefined]): this;\n colorScaleExtent(v?: [number, number | undefined]): this | [number, number | undefined] {\n if (v === undefined) { return this.options.colorScaleExtent; }\n this.options.colorScaleExtent = v;\n\n return this;\n }\n\n radiusScaleExtent(): [number, number | undefined];\n radiusScaleExtent(v: [number, number | undefined]): this;\n radiusScaleExtent(v?: [number, number | undefined]): this | [number, number | undefined] {\n if (v === undefined) { return this.options.radiusScaleExtent; }\n this.options.radiusScaleExtent = v;\n\n return this;\n }\n\n opacityScaleExtent(): [number, number | undefined];\n opacityScaleExtent(v: [number, number | undefined]): this;\n opacityScaleExtent(v?: [number, number | undefined]): this | [number, number | undefined] {\n if (v === undefined) { return this.options.opacityScaleExtent; }\n this.options.opacityScaleExtent = v;\n\n return this;\n }\n\n\n colorRange(): string[];\n colorRange(v: string[]): this;\n colorRange(v?: string[]): this | string[] {\n if (v === undefined) { return this.options.colorRange; }\n this.options.colorRange = v;\n this._scale.color.range(v);\n\n return this;\n }\n\n radiusRange(): [number, number] | null;\n radiusRange(v: [number, number] | null): this;\n radiusRange(v?: [number, number] | null): this | [number, number] | null {\n if (v === undefined) { return this.options.radiusRange; }\n this.options.radiusRange = v;\n this._scale.radius.range(this.options.radiusRange ?? [this.options.radius, this.options.radius]).clamp(true);\n\n return this;\n }\n\n colorScale(): d3.ScaleLinear<string, string>;\n colorScale(v: d3.ScaleLinear<string, string>): this;\n colorScale(v?: d3.ScaleLinear<string, string>) {\n if (v === undefined) return this._scale.color;\n this._scale.color = v;\n return this;\n }\n\n radiusScale(): d3.ScaleLinear<number, number>;\n radiusScale(v: d3.ScaleLinear<number, number>): this;\n radiusScale(v?: d3.ScaleLinear<number, number>): this | d3.ScaleLinear<number, number> {\n if (v === undefined) return this._scale.radius\n this._scale.radius = v;\n return this;\n }\n\n lng(): (d: Data) => number;\n lng(v: (d: Data) => number): this;\n lng(v?: (d: Data) => number) {\n if (v === undefined) { return this._fn.lng; }\n this._fn.lng = v;\n\n return this;\n }\n\n lat(): (d: Data) => number;\n lat(v: (d: Data) => number): this;\n lat(v?: (d: Data) => number) {\n if (v === undefined) { return this._fn.lat; }\n this._fn.lat = v;\n\n return this;\n }\n\n colorValue(): (d: HexbinData<Data>[]) => number;\n colorValue(v: (d: HexbinData<Data>[]) => number): this;\n colorValue(v?: (d: HexbinData<Data>[]) => number) {\n if (v === undefined) { return this._fn.colorValue; }\n this._fn.colorValue = v;\n\n return this;\n }\n\n radiusValue(): (d: HexbinData<Data>[]) => number;\n radiusValue(v: (d: HexbinData<Data>[]) => number): this;\n radiusValue(v?: (d: HexbinData<Data>[]) => number) {\n if (v === undefined) { return this._fn.radiusValue; }\n this._fn.radiusValue = v;\n\n return this;\n }\n\n fill(): (d: HexbinData<Data>[]) => string;\n fill(v: (d: HexbinData<Data>[]) => string): this;\n fill(v?: (d: HexbinData<Data>[]) => string) {\n if (v === undefined) { return this._fn.fill; }\n this._fn.fill = v;\n\n return this;\n }\n\n data(): Data[];\n data(v: Data extends L.LatLngExpression ? Data[] : never): this;\n data(v: Data[], accessor?: (d: Data) => L.LatLngExpression): this;\n\n // Implementation\n data(v?: Data[] | L.LatLngExpression[], accessor?: (d: Data) => L.LatLngExpression): this | Data[] {\n if (v === undefined) {\n return this._data;\n }\n\n if (!isLatLngExpression(v[0]) && !accessor) {\n console.error(\"Leaflet hexbin: data does not appear to be an array of L.LatLngExpression. You must provide an accessor function to convert the data to L.LatLngExpression\");\n }\n\n this._data = v as Data[] ?? []\n this._accessor = accessor ?? ((d: Data) => d as L.LatLngExpression)\n\n this.redraw();\n return this;\n }\n\n /*\n * Getter for the event dispatcher\n */\n dispatch() { return this._dispatch }\n\n hoverHandler(): HexbinHoverHandler<Data>;\n hoverHandler(v: HexbinHoverHandler<Data>): this;\n hoverHandler(v?: HexbinHoverHandler<Data>): this | HexbinHoverHandler<Data> {\n if (v === undefined) { return this._hoverHandler; }\n this._hoverHandler = (null != v) ? v : HexbinHoverHandler.none();\n\n this.redraw();\n\n return this;\n }\n\n // Cannot overload bindTooltip() with data dependant content\n tooltip(tooltip: TooltipOptions<Data>): this {\n this._tooltipOptions = tooltip;\n if (this._tooltip)\n this._tooltip.options = tooltip.options ?? {};\n else {\n this._tooltip = L.tooltip(tooltip.options)\n }\n return this\n }\n\n getTooltip(): L.Tooltip | undefined {\n return this._tooltip\n }\n\n bindTooltip(content: L.Tooltip | L.Content, options?: L.TooltipOptions): this {\n if (content instanceof L.Tooltip) {\n this._tooltip = content;\n // FIXME: weird bug likely coming from vue-leaflet were tooltip is not properly positioned\n // this._tooltip.options.offset[0] -= 5;\n if (this._map) {\n this._tooltip.setLatLng([0, 0]).addTo(this._map)\n }\n } else {\n this._tooltip = L.tooltip(options).setContent(content);\n }\n return this\n }\n\n unbindTooltip(): this {\n this._tooltip?.remove();\n this._tooltip = undefined;\n return this\n }\n\n /*\n * Returns an array of the points in the path, or nested arrays of points in case of multi-polyline.\n */\n getLatLngs() {\n const that = this;\n\n // Map the data into an array of latLngs using the configured lat/lng accessors\n return this._data.map(function (d) {\n return L.latLng(that._fn.lat(d), that._fn.lng(d));\n });\n }\n /*\n * Get path geometry as GeoJSON\n */\n toGeoJSON(): GeoJSON.Feature<GeoJSON.MultiPoint, L.LatLng> {\n return L.GeoJSON.getFeature<L.LatLng, GeoJSON.MultiPoint>(this, {\n type: 'MultiPoint',\n coordinates: L.GeoJSON.latLngsToCoords(this.getLatLngs(), 0)\n });\n }\n}\n\n/**\n * Factory function to instanciate a new hexbin layer\n */\nexport function hexbinLayer<Data = L.LatLngExpression>(options?: HexbinLayerConfig) {\n return new HexbinLayer<Data>(options);\n}\n\n\n"],"names":["HexbinHoverHandler","resizeFill","svg","hexLayer","event","data","d3","d","resizeScale","radiusScale","compound","handlers","none","HexbinHoverHandler$1","isLatLngExpression","L","HexbinLayer","options","val","scaleLinear","dispatch","hexbin","x","_","y","select","map","_a","latlng","that","coord","point","join","enterUpdate","from","to","length","step","g","thisLayer","size","bounds","bins","colorExtent","radiusExtent","opacityExtent","colorDomain","radiusDomain","container","i","hexagons","ev","_b","latLng","exit","valueFn","scaleExtent","ext","extent","v","accessor","tooltip","content","hexbinLayer"],"mappings":"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"}
|
package/dist/index.umd.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
(function(
|
1
|
+
(function(h,c){typeof exports=="object"&&typeof module<"u"?c(exports,require("d3"),require("d3-hexbin"),require("leaflet")):typeof define=="function"&&define.amd?define(["exports","d3","d3-hexbin","leaflet"],c):(h=typeof globalThis<"u"?globalThis:h||self,c(h["leaflet-hexbin"]={},h.d3,h["d3-hexbin"],h.L))})(this,function(h,c,v,j){"use strict";function S(s){const t=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(s){for(const e in s)if(e!=="default"){const n=Object.getOwnPropertyDescriptor(s,e);Object.defineProperty(t,e,n.get?n:{enumerable:!0,get:()=>s[e]})}}return t.default=s,Object.freeze(t)}const m=S(c),u=S(j);var y;(s=>{function t(){return{mouseover:function(p,o,a,d){m.select(p.parentElement).select("path.hexbin-hexagon").transition().duration(o.options.duration).attr("d",function(f){return o._hexLayout.hexagon(o.options.radius)})},mouseout:function(p,o,a,d){m.select(p.parentElement).select("path.hexbin-hexagon").transition().duration(o.options.duration).attr("d",function(f){return o._hexLayout.hexagon(o._scale.radius(o._fn.radiusValue.call(o,f)))})}}}s.resizeFill=t;function e(p=1.5){return{mouseover:function(o,a,d,_){m.select(o.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(o,a,d,_){m.select(o.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=e;function n(p=[l()]){return{mouseover:function(o,a,d,_){p.forEach(f=>{f.mouseover(o,a,d,_)})},mouseout:function(o,a,d,_){p.forEach(f=>{f.mouseout(o,a,d,_)})}}}s.compound=n;function l(){return{mouseover:function(){},mouseout:function(){}}}s.none=l})(y||(y={}));const x=y;function H(s){return s instanceof u.LatLng||typeof s=="object"&&"lat"in s&&"lng"in s||Array.isArray(s)&&s.length===2&&typeof s[0]=="number"&&typeof s[1]=="number"}class V extends u.SVG{constructor(t){super(),this.options={radius:12,opacity:.6,duration:200,colorScaleExtent:[1,void 0],radiusScaleExtent:[1,void 0],opacityScaleExtent:[1,void 0],colorDomain:null,radiusDomain:null,colorRange:["#f7fbff","#08306b"],radiusRange:null,pointerEvents:"all",...u.Renderer.prototype.options,...u.Layer.prototype.options},this._fn={lng:e=>u.latLng(this._accessor(e)).lng,lat:e=>u.latLng(this._accessor(e)).lat,colorValue:e=>e.length,radiusValue:e=>e.length,opacityValue:e=>e.length,fill:e=>{const n=this._fn.colorValue(e);return n!=null?this._scale.color(n):"none"}},this._scale={color:c.scaleLinear(),radius:c.scaleLinear(),opacity:c.scaleLinear()},this._dispatch=c.dispatch("mouseover","mouseout","click"),this._hoverHandler=x.none(),this._hexLayout=v.hexbin().radius(this.options.radius).x(({point:[e,n]})=>e).y(({point:[e,n]})=>n),this._data=Array(),this._tooltipOptions={},this.options={...this.options,...t},this._scale.color.range(this.options.colorRange).clamp(!0),this._scale.radius.range(this.options.radiusRange??[this.options.radius,this.options.radius]).clamp(!0),this._scale.opacity.range(typeof this.options.opacity=="number"?[this.options.opacity,this.options.opacity]:this.options.opacity).clamp(!0)}_accessor(t){return t}_initContainer(){super._initContainer(),this._d3Container=c.select(this._container).select("g")}onAdd(t){var e;return super.onAdd(t),this._map=t,(e=this._tooltip)==null||e.setLatLng([0,0]).addTo(t),t.on("moveend",this.redraw,this),this.redraw(),this}_project(t){const{x:e,y:n}=this._map.latLngToLayerPoint(t);return[e,n]}onRemove(t){return this._destroyContainer(),t.off("moveend",this.redraw,this),this}_destroyContainer(){c.select(this._container).remove()}redraw(){const t=this;if(!t._map)return;const e=t._data.map(o=>{const a=t._accessor(o),d=t._project(a);return{coord:a,point:d,data:o}}),n=this._d3Container.selectAll("g.hexbin").data([this._map.getZoom()],o=>o),p=n.enter().append("g").attr("class",function(o){return"hexbin zoom-"+o}).merge(n);n.exit().remove(),this._createHexagons(p,e)}_linearlySpace(t,e,n){const l=(e-t)/Math.max(n-1,1);return Array.from({length:n},(p,o)=>t+o*l)}_createHexagons(t,e){const n=this,l=n._map.getSize(),p=n._map.getBounds().pad(n.options.radius*2/Math.max(l.x,l.y)),o=n._hexLayout(e).filter(({x:i,y:r})=>p.contains(n._map.layerPointToLatLng(u.point(i,r)))),a=n._getExtent(o,n._fn.colorValue,n.options.colorScaleExtent),d=n._getExtent(o,n._fn.radiusValue,n.options.radiusScaleExtent),_=n._getExtent(o,n._fn.opacityValue,n.options.opacityScaleExtent),f=this.options.colorDomain??n._linearlySpace(a[0],a[1],n._scale.color.range().length),L=this.options.radiusDomain||d;n._scale.color.domain(f),n._scale.radius.domain(L),n._scale.opacity.domain(_);const b=t.selectAll("g.hexbin-container").data(o,({x:i,y:r})=>`${i}:${r}`);b.select("path.hexbin-hexagon").transition().duration(n.options.duration).attr("fill",n._fn.fill.bind(n)).attr("fill-opacity",i=>n._scale.opacity(n._fn.opacityValue.call(n,i))).attr("stroke-opacity",i=>n._scale.opacity(n._fn.opacityValue.call(n,i))).attr("d",i=>n._hexLayout.hexagon(n._scale.radius(n._fn.radiusValue.call(n,i))));const E=b.enter().append("g").attr("class","hexbin-container").style("pointer-events",n.options.pointerEvents);E.on("mouseover",function(i,r){c.select(this).raise()});const O=E.append("path").attr("class","hexbin-hexagon").attr("transform",({x:i,y:r})=>`translate(${i},${r})`).attr("d",()=>n._hexLayout.hexagon(n._scale.radius.range()[0])).attr("fill",n._fn.fill.bind(n)).attr("fill-opacity",.01).attr("stroke-opacity",.01).style("pointer-events","all");O.transition().duration(n.options.duration).attr("fill-opacity",i=>n._scale.opacity(n._fn.opacityValue.call(n,i))).attr("stroke-opacity",i=>n._scale.opacity(n._fn.opacityValue.call(n,i))).attr("d",i=>n._hexLayout.hexagon(n._scale.radius(n._fn.radiusValue.call(n,i)))).style("pointer-events","all"),E.append("path").attr("class","hexbin-grid").attr("transform",({x:i,y:r})=>`translate(${i},${r})`).attr("d",()=>n._hexLayout.hexagon(n.options.radius)).attr("fill","none").attr("stroke","none"),O.on("mouseover",function(i,r){var g,R;(g=n._tooltipOptions)!=null&&g.content&&((R=n._tooltip)==null||R.setContent(typeof n._tooltipOptions.content=="function"?n._tooltipOptions.content(r):n._tooltipOptions.content).setLatLng(n._map.layerPointToLatLng(u.point(r.x,r.y))).openOn(n._map)),n._hoverHandler.mouseover(this,n,i,r),n._dispatch.call("mouseover",this,r,n,i),this.classList.add("hover")}).on("mouseout",function(i,r){var g;(g=n._tooltip)==null||g.close(),n._hoverHandler.mouseout(this,n,i,r),n._dispatch.call("mouseout",this,r,n,i),this.classList.remove("hover")}).on("click",function(i,r){const g=n._map.layerPointToLatLng(u.point(r.x,r.y));n._dispatch.call("click",this,r,g,n,i),i.stopPropagation()});const T=b.exit();T.select("path.hexbin-hexagon").transition().duration(n.options.duration).attr("fill-opacity",0).attr("stroke-opacity",0).attr("d",i=>n._hexLayout.hexagon(0)),T.transition().duration(n.options.duration).remove()}_getExtent(t,e,n){let l=c.extent(t,e.bind(this));return(l[0]===void 0||l[1]===void 0)&&(l=[0,0]),n[0]!=null&&(l[0]=n[0]),n[1]!=null&&(l[1]=n[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)}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,e){return t===void 0?this._data:(!H(t[0])&&!e&&console.error("Leaflet hexbin: data does not appear to be an array of L.LatLngExpression. You must provide an accessor function to convert the data to L.LatLngExpression"),this._data=t??[],this._accessor=e??(n=>n),this.redraw(),this)}dispatch(){return this._dispatch}hoverHandler(t){return t===void 0?this._hoverHandler:(this._hoverHandler=t??x.none(),this.redraw(),this)}tooltip(t){return this._tooltipOptions=t,this._tooltip?this._tooltip.options=t.options??{}:this._tooltip=u.tooltip(t.options),this}getTooltip(){return this._tooltip}bindTooltip(t,e){return t instanceof u.Tooltip?(this._tooltip=t,this._map&&this._tooltip.setLatLng([0,0]).addTo(this._map)):this._tooltip=u.tooltip(e).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(e){return u.latLng(t._fn.lat(e),t._fn.lng(e))})}toGeoJSON(){return u.GeoJSON.getFeature(this,{type:"MultiPoint",coordinates:u.GeoJSON.latLngsToCoords(this.getLatLngs(),0)})}}function k(s){return new V(s)}h.HexbinHoverHandler=x,h.HexbinLayer=V,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 {\n mouseover(svg: SVGPathElement, hexLayer: HexbinLayer, event: MouseEvent, data: HexbinData[]): void;\n mouseout(svg: SVGPathElement, hexLayer: HexbinLayer, event: MouseEvent, data: HexbinData[]): void;\n}\n\nexport namespace HexbinHoverHandler {\n\n interface TooltipOptions {\n tooltipContent: (d: HexbinData[], hexLayer: HexbinLayer) => string;\n }\n\n export function tooltip(options: TooltipOptions = { tooltipContent(d) { return `Count: ${d.length}` } }): HexbinHoverHandler {\n\n // Generate the tooltip\n const tooltip = d3.select('body').append('div')\n .attr('class', 'hexbin-tooltip')\n .style('z-index', 9999)\n .style('pointer-events', 'none')\n .style('visibility', 'hidden')\n .style('position', 'fixed');\n\n tooltip.append('div').attr('class', 'tooltip-content');\n\n // return the handler instance\n return {\n mouseover: function (svg: SVGPathElement, hexLayer: HexbinLayer, event: MouseEvent, data: HexbinData[]) {\n const gCoords = d3.pointer(event);\n\n tooltip\n .style('visibility', 'visible')\n .html(options.tooltipContent(data, hexLayer));\n\n\n const div = tooltip.node();\n if (!div) {\n console.warn(\"Leaflet hexbin: tooltip node not found\");\n return\n }\n const h = div.clientHeight, w = div.clientWidth;\n\n tooltip\n .style('top', event.clientY - gCoords[1] - h - 16 + 'px')\n .style('left', event.clientX - gCoords[0] - w / 2 + 'px');\n\n },\n mouseout: function (svg, hexLayer: HexbinLayer, event: MouseEvent, data: HexbinData[]) {\n tooltip\n .style('visibility', 'hidden')\n .html();\n }\n };\n\n }\n\n export function resizeFill(): HexbinHoverHandler {\n return {\n mouseover: function (svg: SVGPathElement, hexLayer: HexbinLayer, event: MouseEvent, data: HexbinData[]) {\n const o = d3.select<HTMLElement | null, HexbinData[]>(svg.parentElement);\n o.select('path.hexbin-hexagon')\n .attr('d', function (d) {\n return hexLayer._hexLayout.hexagon(hexLayer.options.radius);\n });\n },\n mouseout: function (svg: SVGPathElement, hexLayer: HexbinLayer, event: MouseEvent, data: HexbinData[]) {\n const o = d3.select<HTMLElement | null, HexbinData[]>(svg.parentElement);\n o.select<SVGPathElement>('path.hexbin-hexagon')\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 {\n\n // return the handler instance\n return {\n mouseover: function (svg, hexLayer, event, data) {\n const o = d3.select<HTMLElement | null, HexbinData[]>(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[]>(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(handlers: HexbinHoverHandler[] = [none()]): HexbinHoverHandler {\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 {\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\nexport interface HexbinLayerConfig {\n /**\n * Hex grid cell radius in pixels.\n * This value should be a positive number.\n * This radius controls the radius of the hexagons used to bin the data\n * but not necessarily to draw each individual hexbin.\n * @default 12\n */\n radius?: number,\n /**\n * Sets the opacity on the hexbin layer.\n * This value should be a number between 0 and 1.\n * If an array is provided, the first element is the minimum opacity and the second is the maximum.\n * @default 0.6\n */\n opacity?: number | [number, number],\n /**\n * Opacity scale extent: [min, max] domain for opacity interpolation.\n * @default [1, undefined]\n */\n opacityScaleExtent?: [number, number | undefined],\n /**\n * Duration of transition in milliseconds.\n * @default 200\n */\n duration?: number,\n\n /**\n * Color scale extent: [min, max] domain for color interpolation.\n * @default [1, undefined]\n */\n colorScaleExtent?: [number, number | undefined],\n /**\n * This is used to override the default behavior, which is to derive the color domain from the data.\n * Normally, you can tweak the generation of the color domain using the colorScaleExtent option.\n * However, if you want to set a completely custom domain, you can provide it as an array of values with this option.\n * The array of values will be passed directly into the domain of the color scale before rendering.\n * @default null\n */\n colorDomain?: number[] | null\n /**\n * Color range used to fill the hexbins.\n * @default ['#f7fbff', '#08306b']\n */\n colorRange?: string[],\n\n /**\n * Radius scale extent: [min, max] domain for radius interpolation.\n * @default [1, undefined]\n */\n radiusScaleExtent?: [number, number | undefined],\n /**\n * This is used to override the default behavior, which is to derive the radius domain from the data.\n * Normally, you can tweak the generation of the radius domain using the radiusScaleExtent option.\n * However, if you want to set a completely custom domain, you can provide it as an array of values with this option.\n * The array of values will be passed directly into the domain of the radius scale before rendering.\n * @default null\n */\n radiusDomain?: number[] | null\n /**\n * Sets the range of the radius scale used to size the hexbins.\n * @default hex grid cell radius\n */\n radiusRange?: [number, number] | null,\n\n /**\n * You should only modify this config option if you want to change the mouse event behavior on hexbins. This will modify when the events are propagated based on the visibility state and/or part of the hexbin being hovered.\n * @default 'all'\n */\n pointerEvents?: string\n}\n\n/**\n * Hexbin data attached to each hexagon, once binned.\n */\nexport type HexbinData = {\n o: L.LatLngExpression;\n point: Readonly<[number, 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 extends L.SVG implements HexbinLayer {\n options: Required<HexbinLayerConfig> & L.RendererOptions = {\n radius: 12,\n opacity: 0.6,\n duration: 200,\n\n colorScaleExtent: [1, undefined],\n radiusScaleExtent: [1, undefined],\n opacityScaleExtent: [1, undefined],\n colorDomain: null,\n radiusDomain: null,\n colorRange: ['#f7fbff', '#08306b'],\n radiusRange: null,\n\n pointerEvents: 'all',\n // Handle parent default options\n // ...L.SVG.prototype.options,\n ...L.Renderer.prototype.options,\n ...L.Layer.prototype.options\n }\n _fn = {\n lng: (d: L.LatLngExpression) => L.latLng(d).lng,\n lat: (d: L.LatLngExpression) => L.latLng(d).lat,\n colorValue: (d: HexbinData[]) => d.length,\n radiusValue: (d: HexbinData[]) => d.length,\n opacityValue: (d: HexbinData[]) => d.length,\n fill: (d: HexbinData[]) => {\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 = HexbinHoverHandler.none();\n\n // Create the hex layout\n _hexLayout = hexbin<HexbinData>()\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<L.LatLngExpression>()\n\n declare _map: L.Map;\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 /**\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 // 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>((d) => {\n const point = that._project(d);\n return { o: d, point };\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[]) {\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>>('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 const c = select<SVGGElement, HexbinBin<HexbinData>>(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, d: MouseEvent, i) {\n thisLayer._hoverHandler.mouseover(this, thisLayer as HexbinLayer, d, i);\n thisLayer._dispatch.call('mouseover', this, d, i);\n this.classList.add('hover')\n })\n .on('mouseout', function (this: SVGPathElement, d: MouseEvent, i) {\n thisLayer._hoverHandler.mouseout(this, thisLayer as HexbinLayer, d, i);\n thisLayer._dispatch.call('mouseout', this, thisLayer as HexbinLayer, d, i);\n this.classList.remove('hover')\n })\n .on('click', function (this, d, i) {\n thisLayer._dispatch.call('click', this, thisLayer as HexbinLayer, d, i);\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>[],\n valueFn: (d: HexbinBin<HexbinData>) => number,\n scaleExtent: [number, number | undefined]\n ): [number, number] {\n\n // Determine the extent of the values\n let ext = extent<HexbinBin<HexbinData>, 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: L.LatLngExpression) => number;\n lng(v: (d: L.LatLngExpression) => number): this;\n lng(v?: (d: L.LatLngExpression) => number) {\n if (v === undefined) { return this._fn.lng; }\n this._fn.lng = v;\n\n return this;\n }\n\n lat(): (d: L.LatLngExpression) => number;\n lat(v: (d: L.LatLngExpression) => number): this;\n lat(v?: (d: L.LatLngExpression) => number) {\n if (v === undefined) { return this._fn.lat; }\n this._fn.lat = v;\n\n return this;\n }\n\n colorValue(): (d: HexbinData[]) => number;\n colorValue(v: (d: HexbinData[]) => number): this;\n colorValue(v?: (d: HexbinData[]) => number) {\n if (v === undefined) { return this._fn.colorValue; }\n this._fn.colorValue = v;\n\n return this;\n }\n\n radiusValue(): (d: HexbinData[]) => number;\n radiusValue(v: (d: HexbinData[]) => number): this;\n radiusValue(v?: (d: HexbinData[]) => number) {\n if (v === undefined) { return this._fn.radiusValue; }\n this._fn.radiusValue = v;\n\n return this;\n }\n\n fill(): (d: HexbinData[]) => string;\n fill(v: (d: HexbinData[]) => string): this;\n fill(v?: (d: HexbinData[]) => string) {\n if (v === undefined) { return this._fn.fill; }\n this._fn.fill = v;\n\n return this;\n }\n\n data(): L.LatLngExpression[];\n data(v: L.LatLngExpression[]): this;\n data(v?: L.LatLngExpression[]): this | L.LatLngExpression[] {\n if (v === undefined) { return this._data; }\n this._data = (null != v) ? v : [];\n this.redraw();\n\n return this;\n }\n\n /*\n * Getter for the event dispatcher\n */\n dispatch() { return this._dispatch }\n\n hoverHandler(): HexbinHoverHandler;\n hoverHandler(v: HexbinHoverHandler): this;\n hoverHandler(v?: HexbinHoverHandler): this | HexbinHoverHandler {\n if (v === undefined) { return this._hoverHandler; }\n this._hoverHandler = (null != v) ? v : HexbinHoverHandler.none();\n\n this.redraw();\n\n return this;\n }\n\n /*\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(options?: HexbinLayerConfig) {\n return new HexbinLayer(options);\n}\n\n\n"],"names":["HexbinHoverHandler","tooltip","options","d","d3","svg","hexLayer","event","data","gCoords","div","h","w","resizeFill","resizeScale","radiusScale","compound","handlers","none","HexbinHoverHandler$1","HexbinLayer","L","val","scaleLinear","dispatch","hexbin","x","_","y","select","map","latlng","that","point","join","enterUpdate","from","to","length","step","i","g","thisLayer","size","bounds","bins","colorExtent","radiusExtent","opacityExtent","colorDomain","radiusDomain","container","hexagons","exit","valueFn","scaleExtent","ext","extent","v","hexbinLayer"],"mappings":"ynBASiB,IAAAA,GAAAA,GAAV,CAME,SAASC,EAAQC,EAA0B,CAAE,eAAeC,EAAG,CAAS,MAAA,UAAUA,EAAE,MAAM,EAAA,GAA4B,CAGrHF,MAAAA,EAAUG,EAAG,OAAO,MAAM,EAAE,OAAO,KAAK,EAC3C,KAAK,QAAS,gBAAgB,EAC9B,MAAM,UAAW,IAAI,EACrB,MAAM,iBAAkB,MAAM,EAC9B,MAAM,aAAc,QAAQ,EAC5B,MAAM,WAAY,OAAO,EAE5BH,OAAAA,EAAQ,OAAO,KAAK,EAAE,KAAK,QAAS,iBAAiB,EAG9C,CACL,UAAW,SAAUI,EAAqBC,EAAuBC,EAAmBC,EAAoB,CAChG,MAAAC,EAAUL,EAAG,QAAQG,CAAK,EAEhCN,EACG,MAAM,aAAc,SAAS,EAC7B,KAAKC,EAAQ,eAAeM,EAAMF,CAAQ,CAAC,EAGxC,MAAAI,EAAMT,EAAQ,KAAK,EACzB,GAAI,CAACS,EAAK,CACR,QAAQ,KAAK,wCAAwC,EACrD,MAAA,CAEF,MAAMC,EAAID,EAAI,aAAcE,EAAIF,EAAI,YAEpCT,EACG,MAAM,MAAOM,EAAM,QAAUE,EAAQ,CAAC,EAAIE,EAAI,GAAK,IAAI,EACvD,MAAM,OAAQJ,EAAM,QAAUE,EAAQ,CAAC,EAAIG,EAAI,EAAI,IAAI,CAE5D,EACA,SAAU,SAAUP,EAAKC,EAAuBC,EAAmBC,EAAoB,CACrFP,EACG,MAAM,aAAc,QAAQ,EAC5B,KAAK,CAAA,CAEZ,CAAA,CAvCKD,EAAS,QAAAC,EA2CT,SAASY,GAAiC,CACxC,MAAA,CACL,UAAW,SAAUR,EAAqBC,EAAuBC,EAAmBC,EAAoB,CAC5FJ,EAAG,OAAyCC,EAAI,aAAa,EACrE,OAAO,qBAAqB,EAC3B,KAAK,IAAK,SAAUF,EAAG,CACtB,OAAOG,EAAS,WAAW,QAAQA,EAAS,QAAQ,MAAM,CAAA,CAC3D,CACL,EACA,SAAU,SAAUD,EAAqBC,EAAuBC,EAAmBC,EAAoB,CAC3FJ,EAAG,OAAyCC,EAAI,aAAa,EACrE,OAAuB,qBAAqB,EAC3C,KAAK,IAAK,SAAUF,EAAG,CACtB,OAAOG,EAAS,WAAW,QAAQA,EAAS,OAAO,OAAOA,EAAS,IAAI,YAAY,KAAKA,EAAUH,CAAC,CAAC,CAAC,CAAA,CACtG,CAAA,CAEP,CAAA,CAhBKH,EAAS,WAAAa,EAyBA,SAAAC,EAAYC,EAAsB,IAAyB,CAGlE,MAAA,CACL,UAAW,SAAUV,EAAKC,EAAUC,EAAOC,EAAM,CACrCJ,EAAG,OAAyCC,EAAI,aAAa,EACrE,OAAO,qBAAqB,EAC3B,WAAA,EAAa,SAASC,EAAS,QAAQ,QAAQ,EAC/C,KAAK,IAAK,UAAY,CACd,OAAAA,EAAS,WAAW,QAAQA,EAAS,OAAO,OAAO,MAAM,EAAE,CAAC,EAAKS,CAAY,CAAA,CACrF,CACL,EACA,SAAU,SAAUV,EAAKC,EAAUC,EAAOC,EAAM,CACpCJ,EAAG,OAAyCC,EAAI,aAAc,EACtE,OAAO,qBAAqB,EAC3B,WAAa,EAAA,SAASC,EAAS,QAAQ,QAAQ,EAC/C,KAAK,IAAMH,GACHG,EAAS,WAAW,QAAQA,EAAS,OAAO,OAAOA,EAAS,IAAI,YAAY,KAAKA,EAAUH,CAAC,CAAC,CAAC,CACtG,CAAA,CAEP,CAAA,CApBKH,EAAS,YAAAc,EAwBT,SAASE,EAASC,EAAiC,CAACC,EAAM,CAAA,EAAuB,CAC/E,MAAA,CACL,UAAW,SAAUb,EAAKC,EAAUC,EAAOC,EAAM,CACrCS,EAAA,QAAS,GAAM,CAAE,EAAE,UAAUZ,EAAKC,EAAUC,EAAOC,CAAI,CAAA,CAAI,CACvE,EACA,SAAU,SAAUH,EAAKC,EAAUC,EAAOC,EAAM,CACpCS,EAAA,QAAS,GAAM,CAAE,EAAE,SAASZ,EAAKC,EAAUC,EAAOC,CAAI,CAAA,CAAI,CAAA,CAExE,CAAA,CARKR,EAAS,SAAAgB,EAWT,SAASE,GAA2B,CAClC,MAAA,CACL,UAAW,UAAY,CAAE,EACzB,SAAU,UAAY,CAAA,CACxB,CAAA,CAJKlB,EAAS,KAAAkB,CAAA,GA7GDlB,IAAAA,EAAA,CAAA,EAAA,EAqHjB,MAAAmB,EAAenB,EC5BF,MAAAoB,UAAoBC,EAAE,GAA2B,CA2DrD,YAAYnB,EAA6B,CACxC,MAAA,EA3DmD,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,MAGf,GAAGmB,EAAE,SAAS,UAAU,QACxB,GAAGA,EAAE,MAAM,UAAU,OACvB,EACM,KAAA,IAAA,CACJ,IAAMlB,GAA0BkB,EAAE,OAAOlB,CAAC,EAAE,IAC5C,IAAMA,GAA0BkB,EAAE,OAAOlB,CAAC,EAAE,IAC5C,WAAaA,GAAoBA,EAAE,OACnC,YAAcA,GAAoBA,EAAE,OACpC,aAAeA,GAAoBA,EAAE,OACrC,KAAOA,GAAoB,CACzB,MAAMmB,EAAM,KAAK,IAAI,WAAWnB,CAAC,EACjC,OAAgBmB,GAAR,KAAe,KAAK,OAAO,MAAMA,CAAG,EAAI,MAAA,CAEpD,EAES,KAAA,OAAA,CACP,MAAOC,EAAAA,YAA4B,EACnC,OAAQA,EAAAA,YAAY,EACpB,QAASA,EAAY,YAAA,CACvB,EAGY,KAAA,UAAAC,EAAAA,SAAyB,YAAa,WAAY,OAAO,EAGrE,KAAA,cAAoCxB,EAAmB,KAAK,EAG/C,KAAA,WAAAyB,SACV,EAAA,OAAO,KAAK,QAAQ,MAAM,EAC1B,EAAE,CAAC,CAAE,MAAO,CAACC,EAAGC,CAAC,CAAQ,IAAAD,CAAC,EAC1B,EAAE,CAAC,CAAE,MAAO,CAACC,EAAGC,CAAC,CAAE,IAAMA,CAAC,EAG7B,KAAA,MAAQ,MAA0B,EAWhC,KAAK,QAAU,CAAE,GAAG,KAAK,QAAS,GAAG1B,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,CAQhB,gBAAiB,CACf,MAAM,eAAe,EACrB,KAAK,aAAe2B,SAAO,KAAK,UAAU,EAAE,OAAkC,GAAG,CAAA,CAMnF,MAAMC,EAAkB,CAEtB,aAAM,MAAMA,CAAG,EAGf,KAAK,KAAOA,EAEZA,EAAI,GAAG,UAAW,KAAK,OAAQ,IAAI,EAEnC,KAAK,OAAO,EACL,IAAA,CAGT,SAASC,EAA4B,CACnC,KAAM,CAAE,EAAAL,EAAG,EAAAE,GAAM,KAAK,KAAK,mBAAmBG,CAAM,EAC7C,MAAA,CAACL,EAAGE,CAAC,CAAA,CAOd,SAASE,EAAkB,CAEzB,YAAK,kBAAkB,EAEvBA,EAAI,IAAI,UAAW,KAAK,OAAQ,IAAI,EAC7B,IAAA,CAOT,mBAAoB,CACXD,EAAAA,OAAA,KAAK,UAAU,EAAE,OAAO,CAAA,CAOjC,QAAS,CACP,MAAMG,EAAO,KAET,GAAA,CAACA,EAAK,KAAM,OAGhB,MAAMxB,EAAOwB,EAAK,MAAM,IAAiB7B,GAAM,CACvC,MAAA8B,EAAQD,EAAK,SAAS7B,CAAC,EACtB,MAAA,CAAE,EAAGA,EAAG,MAAA8B,CAAM,CAAA,CACtB,EAIKC,EAAO,KAAK,aAAa,UAA+B,UAAU,EACrE,KAAa,CAAC,KAAK,KAAK,QAAQ,CAAC,EAAI/B,GAAMA,CAAC,EAOzCgC,EAJQD,EAAK,QAAQ,OAAO,GAAG,EAClC,KAAK,QAAS,SAAU/B,EAAG,CAAE,MAAO,eAAiBA,CAAA,CAAI,EAGlC,MAAM+B,CAAI,EAG/BA,EAAA,OAAO,OAAO,EAGd,KAAA,gBAAgBC,EAAa3B,CAAI,CAAA,CAIxC,eAAe4B,EAAcC,EAAYC,EAA0B,CACjE,MAAMC,GAAQF,EAAKD,GAAQ,KAAK,IAAIE,EAAS,EAAG,CAAC,EAC1C,OAAA,MAAM,KAAK,CAAE,OAAAA,CAAO,EAAG,CAACX,EAAGa,IAAMJ,EAAQI,EAAID,CAAK,CAAA,CAG3D,gBAAgBE,EAA4DjC,EAAoB,CAC9F,MAAMkC,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,WAAWlC,CAAI,EAAE,OACtC,CAAC,CAAE,EAAAkB,EAAG,EAAAE,KAAQgB,EAAO,SAASF,EAAU,KAAK,mBAAmBrB,EAAE,MAAMK,EAAGE,CAAC,CAAC,CAAC,CAChF,EAGMkB,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,MAAMd,EAAOO,EAAE,UAA8C,oBAAoB,EAC9E,KAAKI,EAAM,CAAC,CAAE,EAAAnB,EAAG,EAAAE,CAAQ,IAAA,GAAGF,CAAC,IAAIE,CAAC,EAAE,EASlCM,EAAA,OAAuB,qBAAqB,EAC9C,WAAW,EAAE,SAASQ,EAAU,QAAQ,QAAQ,EAChD,KAAK,OAAQA,EAAU,IAAI,KAAK,KAAKA,CAAS,CAAC,EAC/C,KAAK,eAAiBvC,GAAMuC,EAAU,OAAO,QAAQA,EAAU,IAAI,aAAa,KAAKA,EAAWvC,CAAC,CAAC,CAAC,EACnG,KAAK,iBAAmBA,GAAMuC,EAAU,OAAO,QAAQA,EAAU,IAAI,aAAa,KAAKA,EAAWvC,CAAC,CAAC,CAAC,EACrG,KAAK,IAAMA,GACHuC,EAAU,WAAW,QAAQA,EAAU,OAAO,OAAOA,EAAU,IAAI,YAAY,KAAKA,EAAWvC,CAAC,CAAC,CAAC,CAC1G,EAQH,MAAMgD,EAAYjB,EAAK,MAAM,EAAE,OAAO,GAAG,EAAE,KAAK,QAAS,kBAAkB,EACxE,MAAM,iBAAkBQ,EAAU,QAAQ,aAAa,EAG1DS,EAAU,GAAG,YAAa,SAA6BhD,EAAeqC,EAAG,CAE7DX,EAAA,OAA2C,IAAI,EAAE,MAAM,CAAA,CAClE,EAEK,MAAAuB,EAAWD,EAAU,OAAO,MAAM,EAAE,KAAK,QAAS,gBAAgB,EACrE,KAAK,YAAa,CAAC,CAAE,EAAAzB,EAAG,EAAAE,CAAE,IAAM,aAAaF,CAAC,IAAIE,CAAC,GAAG,EACtD,KAAK,IAAK,IAAMc,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,eAAiBvC,GAAMuC,EAAU,OAAO,QAAQA,EAAU,IAAI,aAAa,KAAKA,EAAWvC,CAAC,CAAC,CAAC,EACnG,KAAK,iBAAmBA,GAAMuC,EAAU,OAAO,QAAQA,EAAU,IAAI,aAAa,KAAKA,EAAWvC,CAAC,CAAC,CAAC,EACrG,KAAK,IAAMA,GAAMuC,EAAU,WAAW,QAAQA,EAAU,OAAO,OAAOA,EAAU,IAAI,YAAY,KAAKA,EAAWvC,CAAC,CAAC,CAAC,CAAC,EACpH,MAAM,iBAAkB,KAAK,EAGdgD,EAAU,OAAO,MAAM,EAAE,KAAK,QAAS,aAAa,EACnE,KAAK,YAAa,CAAC,CAAE,EAAAzB,EAAG,EAAAE,CAAE,IAAM,aAAaF,CAAC,IAAIE,CAAC,GAAG,EACtD,KAAK,IAAK,IAAMc,EAAU,WAAW,QAAQA,EAAU,QAAQ,MAAM,CAAC,EACtE,KAAK,OAAQ,MAAM,EACnB,KAAK,SAAU,MAAM,EAIxBU,EAAS,GAAG,YAAa,SAAgCjD,EAAeqC,EAAG,CACzEE,EAAU,cAAc,UAAU,KAAMA,EAA0BvC,EAAGqC,CAAC,EACtEE,EAAU,UAAU,KAAK,YAAa,KAAMvC,EAAGqC,CAAC,EAC3C,KAAA,UAAU,IAAI,OAAO,CAC3B,CAAA,EACE,GAAG,WAAY,SAAgCrC,EAAeqC,EAAG,CAChEE,EAAU,cAAc,SAAS,KAAMA,EAA0BvC,EAAGqC,CAAC,EACrEE,EAAU,UAAU,KAAK,WAAY,KAAMA,EAA0BvC,EAAGqC,CAAC,EACpE,KAAA,UAAU,OAAO,OAAO,CAC9B,CAAA,EACA,GAAG,QAAS,SAAgBrC,EAAGqC,EAAG,CACjCE,EAAU,UAAU,KAAK,QAAS,KAAMA,EAA0BvC,EAAGqC,CAAC,CAAA,CACvE,EAIG,MAAAa,EAAOnB,EAAK,KAAK,EAElBmB,EAAA,OAAO,qBAAqB,EAC9B,WAAW,EAAE,SAASX,EAAU,QAAQ,QAAQ,EAChD,KAAK,eAAgB,CAAC,EACtB,KAAK,iBAAkB,CAAC,EACxB,KAAK,IAAMvC,GAAMuC,EAAU,WAAW,QAAQ,CAAC,CAAC,EAEnDW,EAAK,aAAa,SAASX,EAAU,QAAQ,QAAQ,EAAE,OAAO,CAAA,CAIhE,WACEG,EACAS,EACAC,EACkB,CAGlB,IAAIC,EAAMC,EAAAA,OAAsCZ,EAAMS,EAAQ,KAAK,IAAI,CAAC,EAExE,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,CAST,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,CAKT,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,CAKT,SAASA,EAA2B,CAClC,OAAIA,IAAM,OAAkB,KAAK,QAAQ,UACzC,KAAK,QAAQ,SAAWA,EAEjB,KAAA,CAKT,iBAAiBA,EAAuE,CACtF,OAAIA,IAAM,OAAoB,KAAK,QAAQ,kBAC3C,KAAK,QAAQ,iBAAmBA,EAEzB,KAAA,CAKT,kBAAkBA,EAAuE,CACvF,OAAIA,IAAM,OAAoB,KAAK,QAAQ,mBAC3C,KAAK,QAAQ,kBAAoBA,EAE1B,KAAA,CAKT,mBAAmBA,EAAuE,CACxF,OAAIA,IAAM,OAAoB,KAAK,QAAQ,oBAC3C,KAAK,QAAQ,mBAAqBA,EAE3B,KAAA,CAMT,WAAWA,EAA+B,CACxC,OAAIA,IAAM,OAAoB,KAAK,QAAQ,YAC3C,KAAK,QAAQ,WAAaA,EACrB,KAAA,OAAO,MAAM,MAAMA,CAAC,EAElB,KAAA,CAKT,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,CAKT,WAAWA,EAAoC,CAC7C,OAAIA,IAAM,OAAkB,KAAK,OAAO,OACxC,KAAK,OAAO,MAAQA,EACb,KAAA,CAKT,YAAYA,EAA2E,CACrF,OAAIA,IAAM,OAAkB,KAAK,OAAO,QACxC,KAAK,OAAO,OAASA,EACd,KAAA,CAKT,IAAIA,EAAuC,CACzC,OAAIA,IAAM,OAAoB,KAAK,IAAI,KACvC,KAAK,IAAI,IAAMA,EAER,KAAA,CAKT,IAAIA,EAAuC,CACzC,OAAIA,IAAM,OAAoB,KAAK,IAAI,KACvC,KAAK,IAAI,IAAMA,EAER,KAAA,CAKT,WAAWA,EAAiC,CAC1C,OAAIA,IAAM,OAAoB,KAAK,IAAI,YACvC,KAAK,IAAI,WAAaA,EAEf,KAAA,CAKT,YAAYA,EAAiC,CAC3C,OAAIA,IAAM,OAAoB,KAAK,IAAI,aACvC,KAAK,IAAI,YAAcA,EAEhB,KAAA,CAKT,KAAKA,EAAiC,CACpC,OAAIA,IAAM,OAAoB,KAAK,IAAI,MACvC,KAAK,IAAI,KAAOA,EAET,KAAA,CAKT,KAAKA,EAAuD,CAC1D,OAAIA,IAAM,OAAoB,KAAK,OACnC,KAAK,MAAiBA,GAAS,CAAC,EAChC,KAAK,OAAO,EAEL,KAAA,CAMT,UAAW,CAAE,OAAO,KAAK,SAAA,CAIzB,aAAaA,EAAmD,CAC9D,OAAIA,IAAM,OAAoB,KAAK,eACnC,KAAK,cAAyBA,GAAS1D,EAAmB,KAAK,EAE/D,KAAK,OAAO,EAEL,KAAA,CAMT,YAAa,CACX,MAAMgC,EAAO,KAGb,OAAO,KAAK,MAAM,IAAI,SAAU7B,EAAG,CAC1B,OAAAkB,EAAE,OAAOW,EAAK,IAAI,IAAI7B,CAAC,EAAG6B,EAAK,IAAI,IAAI7B,CAAC,CAAC,CAAA,CACjD,CAAA,CAKH,WAA2D,CAClD,OAAAkB,EAAE,QAAQ,WAAyC,KAAM,CAC9D,KAAM,aACN,YAAaA,EAAE,QAAQ,gBAAgB,KAAK,WAAA,EAAc,CAAC,CAAA,CAC5D,CAAA,CAEL,CAKO,SAASsC,EAAYzD,EAA6B,CAChD,OAAA,IAAIkB,EAAYlB,CAAO,CAChC"}
|
1
|
+
{"version":3,"file":"index.umd.js","sources":["../src/HexbinHoverHandler.ts","../src/HexbinLayer.ts"],"sourcesContent":["import * as d3 from 'd3';\nimport type { HexbinData } from './HexbinLayer';\nimport { type HexbinLayer } from './HexbinLayer';\n\nexport interface HexbinHoverHandler<Data> {\n mouseover(svg: SVGPathElement, hexLayer: HexbinLayer<Data>, event: MouseEvent, data: HexbinData<Data>[]): void;\n mouseout(svg: SVGPathElement, hexLayer: HexbinLayer<Data>, event: MouseEvent, data: HexbinData<Data>[]): void;\n}\n\nexport namespace HexbinHoverHandler {\n\n export function resizeFill(): HexbinHoverHandler<any> {\n return {\n mouseover: function (svg: SVGPathElement, hexLayer: HexbinLayer<any>, event: MouseEvent, data: HexbinData<any>[]) {\n const o = d3.select<HTMLElement | null, HexbinData<any>[]>(svg.parentElement);\n o.select('path.hexbin-hexagon')\n .transition().duration(hexLayer.options.duration)\n .attr('d', function (d) {\n return hexLayer._hexLayout.hexagon(hexLayer.options.radius);\n });\n },\n mouseout: function (svg: SVGPathElement, hexLayer: HexbinLayer<any>, event: MouseEvent, data: HexbinData<any>[]) {\n const o = d3.select<HTMLElement | null, HexbinData<any>[]>(svg.parentElement);\n o.select<SVGPathElement>('path.hexbin-hexagon')\n .transition().duration(hexLayer.options.duration)\n .attr('d', function (d) {\n return hexLayer._hexLayout.hexagon(hexLayer._scale.radius(hexLayer._fn.radiusValue.call(hexLayer, d)));\n });\n }\n };\n\n }\n\n export interface ResizeScaleOptions {\n radiusScale?: number;\n duration?: number;\n }\n\n export function resizeScale(radiusScale: number = 1.5): HexbinHoverHandler<any> {\n\n // return the handler instance\n return {\n mouseover: function (svg, hexLayer, event, data) {\n const o = d3.select<HTMLElement | null, HexbinData<any>[]>(svg.parentElement);\n o.select('path.hexbin-hexagon')\n .transition().duration(hexLayer.options.duration)\n .attr('d', function () {\n return hexLayer._hexLayout.hexagon(hexLayer._scale.radius.range()[1] * (radiusScale));\n });\n },\n mouseout: function (svg, hexLayer, event, data) {\n const o = d3.select<HTMLElement | null, HexbinData<any>[]>(svg.parentElement!);\n o.select('path.hexbin-hexagon')\n .transition().duration(hexLayer.options.duration)\n .attr('d', (d) => {\n return hexLayer._hexLayout.hexagon(hexLayer._scale.radius(hexLayer._fn.radiusValue.call(hexLayer, d)));\n });\n }\n };\n }\n\n\n export function compound<Data>(handlers: HexbinHoverHandler<Data>[] = [none()]): HexbinHoverHandler<Data> {\n return {\n mouseover: function (svg, hexLayer, event, data) {\n handlers!.forEach((h) => { h.mouseover(svg, hexLayer, event, data); });\n },\n mouseout: function (svg, hexLayer, event, data) {\n handlers!.forEach((h) => { h.mouseout(svg, hexLayer, event, data); });\n }\n };\n }\n\n export function none(): HexbinHoverHandler<any> {\n return {\n mouseover: function () { },\n mouseout: function () { }\n };\n }\n\n}\nexport default HexbinHoverHandler\n","import { scaleLinear, dispatch, select, extent } from 'd3';\nimport { hexbin, type HexbinBin } from 'd3-hexbin';\nimport * as L from 'leaflet';\nimport HexbinHoverHandler from './HexbinHoverHandler';\n\n// Need to expose some methods from L.SVG\ndeclare module 'leaflet' {\n interface SVG {\n _initContainer(): void;\n _container: SVGElementTagNameMap['svg']\n }\n}\n\ntype TooltipOptions<Data> = {\n options?: L.TooltipOptions,\n content?: L.Content | ((d: HexbinData<Data>[]) => L.Content)\n}\n\nexport interface HexbinLayerConfig {\n /**\n * Hex grid cell radius in pixels.\n * This value should be a positive number.\n * This radius controls the radius of the hexagons used to bin the data\n * but not necessarily to draw each individual hexbin.\n * @default 12\n */\n radius?: number,\n /**\n * Sets the opacity on the hexbin layer.\n * This value should be a number between 0 and 1.\n * If an array is provided, the first element is the minimum opacity and the second is the maximum.\n * @default 0.6\n */\n opacity?: number | [number, number],\n /**\n * Opacity scale extent: [min, max] domain for opacity interpolation.\n * @default [1, undefined]\n */\n opacityScaleExtent?: [number, number | undefined],\n /**\n * Duration of transition in milliseconds.\n * @default 200\n */\n duration?: number,\n\n /**\n * Color scale extent: [min, max] domain for color interpolation.\n * @default [1, undefined]\n */\n colorScaleExtent?: [number, number | undefined],\n /**\n * This is used to override the default behavior, which is to derive the color domain from the data.\n * Normally, you can tweak the generation of the color domain using the colorScaleExtent option.\n * However, if you want to set a completely custom domain, you can provide it as an array of values with this option.\n * The array of values will be passed directly into the domain of the color scale before rendering.\n * @default null\n */\n colorDomain?: number[] | null\n /**\n * Color range used to fill the hexbins.\n * @default ['#f7fbff', '#08306b']\n */\n colorRange?: string[],\n\n /**\n * Radius scale extent: [min, max] domain for radius interpolation.\n * @default [1, undefined]\n */\n radiusScaleExtent?: [number, number | undefined],\n /**\n * This is used to override the default behavior, which is to derive the radius domain from the data.\n * Normally, you can tweak the generation of the radius domain using the radiusScaleExtent option.\n * However, if you want to set a completely custom domain, you can provide it as an array of values with this option.\n * The array of values will be passed directly into the domain of the radius scale before rendering.\n * @default null\n */\n radiusDomain?: number[] | null\n /**\n * Sets the range of the radius scale used to size the hexbins.\n * @default hex grid cell radius\n */\n radiusRange?: [number, number] | null,\n\n /**\n * You should only modify this config option if you want to change the mouse event behavior on hexbins. This will modify when the events are propagated based on the visibility state and/or part of the hexbin being hovered.\n * @default 'all'\n */\n pointerEvents?: string\n}\n\n/**\n * Hexbin data attached to each hexagon, once binned.\n */\nexport type HexbinData<Data> = {\n data: Data;\n coord: L.LatLngExpression;\n point: Readonly<[number, number]>;\n}\n\n\nfunction isLatLngExpression(d: any): d is L.LatLngExpression {\n return (\n d instanceof L.LatLng ||\n (typeof d === 'object' && \"lat\" in d && \"lng\" in d) ||\n (Array.isArray(d) && d.length === 2 && typeof d[0] === 'number' && typeof d[1] === 'number')\n )\n}\n\n/**\n * Instantiate a hexbin layer.\n * Extends L.SVG to take advantage of built-in zoom animations.\n */\nexport class HexbinLayer<Data = L.LatLngExpression> extends L.SVG {\n options: Required<HexbinLayerConfig> & L.RendererOptions = {\n radius: 12,\n opacity: 0.6,\n duration: 200,\n\n colorScaleExtent: [1, undefined],\n radiusScaleExtent: [1, undefined],\n opacityScaleExtent: [1, undefined],\n colorDomain: null,\n radiusDomain: null,\n colorRange: ['#f7fbff', '#08306b'],\n radiusRange: null,\n\n pointerEvents: 'all',\n // Handle parent default options\n // ...L.SVG.prototype.options,\n ...L.Renderer.prototype.options,\n ...L.Layer.prototype.options\n }\n _fn = {\n lng: (d: Data) => L.latLng(this._accessor(d)).lng,\n lat: (d: Data) => L.latLng(this._accessor(d)).lat,\n colorValue: (d: HexbinData<Data>[]) => d.length,\n radiusValue: (d: HexbinData<Data>[]) => d.length,\n opacityValue: (d: HexbinData<Data>[]) => d.length,\n fill: (d: HexbinData<Data>[]) => {\n const val = this._fn.colorValue(d);\n return (null != val) ? this._scale.color(val) : 'none';\n }\n }\n // Set up the customizable scale\n _scale = {\n color: scaleLinear<string, string>(),\n radius: scaleLinear(),\n opacity: scaleLinear()\n };\n\n // Set up the Dispatcher for managing events and callbacks\n _dispatch = dispatch<SVGPathElement>('mouseover', 'mouseout', 'click');\n\n // Set up the default hover handler\n _hoverHandler: HexbinHoverHandler<Data> = HexbinHoverHandler.none();\n\n // Create the hex layout\n _hexLayout = hexbin<HexbinData<Data>>()\n .radius(this.options.radius)\n .x(({ point: [x, _] }) => x)\n .y(({ point: [_, y] }) => y);\n\n // Initialize the data array to be empty\n _data = Array<Data>()\n\n\n declare _map: L.Map;\n\n _tooltipOptions: TooltipOptions<Data> = {};\n declare _tooltip: L.Tooltip | undefined;\n\n declare _container: SVGElementTagNameMap['svg'];\n\n // declare _container: HTMLElement;\n declare _d3Container: d3.Selection<SVGGElement, unknown, null, undefined>;\n\n public constructor(options?: HexbinLayerConfig) {\n super()\n // L.SVG.prototype.initialize.call(this, options);\n this.options = { ...this.options, ...options };\n this._scale.color\n .range(this.options.colorRange)\n .clamp(true);\n\n this._scale.radius\n .range(this.options.radiusRange ?? [this.options.radius, this.options.radius])\n .clamp(true);\n\n this._scale.opacity\n .range(\n typeof this.options.opacity === 'number'\n ? [this.options.opacity, this.options.opacity]\n : this.options.opacity\n ).clamp(true);\n\n };\n\n _accessor(d: Data) {\n return d as L.LatLngExpression;\n }\n\n /**\n * Create the SVG container for the hexbins\n * @private\n */\n _initContainer() {\n super._initContainer();\n this._d3Container = select(this._container).select<SVGElementTagNameMap['g']>('g');\n }\n /**\n * Callback made by Leaflet when the layer is added to the map\n * @param map Reference to the map to which this layer has been added\n */\n onAdd(map: L.Map): this {\n // Call super.onAdd to properly initialize the SVG pane\n super.onAdd(map)\n\n // Store a reference to the map for later use\n this._map = map;\n this._tooltip?.setLatLng([0, 0]).addTo(map);\n // Redraw on moveend\n map.on('moveend', this.redraw, this);\n // Initial draw\n this.redraw();\n return this\n }\n\n _project(latlng: L.LatLngExpression) {\n const { x, y } = this._map.latLngToLayerPoint(latlng);\n return [x, y] as const;\n }\n\n /**\n * Callback made by Leaflet when the layer is removed from the map\n * @param map Reference to the map from which this layer is being removed\n */\n onRemove(map: L.Map): this {\n // Destroy the svg container\n this._destroyContainer();\n // Remove events\n map.off('moveend', this.redraw, this);\n return this\n }\n\n /**\n * Clean up the svg container\n * @private\n */\n _destroyContainer() {\n select(this._container).remove();\n }\n\n /**\n * (Re)draws the hexbins data on the container\n * @private\n */\n redraw() {\n const that = this;\n\n if (!that._map) return\n\n // Generate the mapped version of the data\n const data = that._data.map<HexbinData<Data>>((d: Data) => {\n const coord = that._accessor(d)\n const point = that._project(coord);\n return { coord: coord, point, data: d };\n });\n\n // Select the hex group for the current zoom level. This has\n // the effect of recreating the group if the zoom level has changed\n const join = this._d3Container.selectAll<SVGGElement, number>('g.hexbin')\n .data<number>([this._map.getZoom()], (d) => d);\n\n // enter\n const enter = join.enter().append('g')\n .attr('class', function (d) { return 'hexbin zoom-' + d; });\n\n // enter + update\n const enterUpdate = enter.merge(join);\n\n // exit\n join.exit().remove();\n\n // add the hexagons to the select\n this._createHexagons(enterUpdate, data);\n\n }\n\n _linearlySpace(from: number, to: number, length: number): number[] {\n const step = (to - from) / Math.max(length - 1, 1);\n return Array.from({ length }, (_, i) => from + (i * step));\n }\n\n _createHexagons(g: d3.Selection<SVGGElement, number, SVGGElement, unknown>, data: HexbinData<Data>[]) {\n const thisLayer = this;\n\n // Create the bins using the hexbin layout\n\n // Generate the map bounds (to be used to filter the hexes to what is visible)\n const size = thisLayer._map.getSize();\n const bounds = thisLayer._map.getBounds().pad(thisLayer.options.radius * 2 / Math.max(size.x, size.y));\n\n const bins = thisLayer._hexLayout(data).filter(\n ({ x, y }) => bounds.contains(thisLayer._map.layerPointToLatLng(L.point(x, y)))\n );\n\n // Derive the extents of the data values for each dimension\n const colorExtent = thisLayer._getExtent(bins, thisLayer._fn.colorValue, thisLayer.options.colorScaleExtent);\n const radiusExtent = thisLayer._getExtent(bins, thisLayer._fn.radiusValue, thisLayer.options.radiusScaleExtent);\n const opacityExtent = thisLayer._getExtent(bins, thisLayer._fn.opacityValue, thisLayer.options.opacityScaleExtent);\n\n // Match the domain cardinality to that of the color range, to allow for a polylinear scale\n const colorDomain = this.options.colorDomain\n ?? thisLayer._linearlySpace(\n colorExtent[0],\n colorExtent[1],\n thisLayer._scale.color.range().length\n );\n const radiusDomain = this.options.radiusDomain || radiusExtent;\n\n // Set the scale domains\n thisLayer._scale.color.domain(colorDomain);\n thisLayer._scale.radius.domain(radiusDomain);\n thisLayer._scale.opacity.domain(opacityExtent);\n\n\n /*\n * Join\n * Join the Hexagons to the data\n * Use a deterministic id for tracking bins based on position\n */\n const join = g.selectAll<SVGGElement, HexbinBin<HexbinData<Data>>>('g.hexbin-container')\n .data(bins, ({ x, y }) => `${x}:${y}`);\n\n\n /*\n * Update\n * Set the fill and opacity on a transition\n * opacity is re-applied in case the enter transition was cancelled\n * the path is applied as well to resize the bins\n */\n join.select<SVGPathElement>('path.hexbin-hexagon')\n .transition().duration(thisLayer.options.duration)\n .attr('fill', thisLayer._fn.fill.bind(thisLayer))\n .attr('fill-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('stroke-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('d', (d) => {\n return thisLayer._hexLayout.hexagon(thisLayer._scale.radius(thisLayer._fn.radiusValue.call(thisLayer, d)));\n });\n\n\n /*\n * Enter\n * Establish the path, size, fill, and the initial opacity\n * Transition to the final opacity and size\n */\n const container = join.enter().append('g').attr('class', 'hexbin-container')\n .style('pointer-events', thisLayer.options.pointerEvents);\n\n\n container.on('mouseover', function (this: SVGGElement, d: MouseEvent, i) {\n // Bring container to foreground by re-appending it to the DOM\n select<SVGGElement, HexbinBin<HexbinData<Data>>>(this).raise();\n })\n\n const hexagons = container.append('path').attr('class', 'hexbin-hexagon')\n .attr('transform', ({ x, y }) => `translate(${x},${y})`)\n .attr('d', () => thisLayer._hexLayout.hexagon(thisLayer._scale.radius.range()[0]))\n // .attr('d', (data, length) => thisLayer._hexLayout.hexagon(thisLayer._scale.radius(data.length)))\n .attr('fill', thisLayer._fn.fill.bind(thisLayer))\n .attr('fill-opacity', 0.01)\n .attr('stroke-opacity', 0.01)\n .style('pointer-events', 'all');\n\n hexagons.transition().duration(thisLayer.options.duration)\n .attr('fill-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('stroke-opacity', (d) => thisLayer._scale.opacity(thisLayer._fn.opacityValue.call(thisLayer, d)))\n .attr('d', (d) => thisLayer._hexLayout.hexagon(thisLayer._scale.radius(thisLayer._fn.radiusValue.call(thisLayer, d))))\n .style('pointer-events', 'all');\n\n // Grid\n const gridEnter = container.append('path').attr('class', 'hexbin-grid')\n .attr('transform', ({ x, y }) => `translate(${x},${y})`)\n .attr('d', () => thisLayer._hexLayout.hexagon(thisLayer.options.radius))\n .attr('fill', 'none')\n .attr('stroke', 'none')\n\n\n // Grid enter-update\n hexagons.on('mouseover', function (this: SVGPathElement, ev: MouseEvent, data) {\n if (thisLayer._tooltipOptions?.content) {\n thisLayer._tooltip\n ?.setContent(\n typeof thisLayer._tooltipOptions.content === \"function\"\n ? thisLayer._tooltipOptions.content(data)\n : thisLayer._tooltipOptions.content\n )\n .setLatLng(\n thisLayer._map.layerPointToLatLng(L.point(data.x, data.y))\n )\n .openOn(thisLayer._map);\n }\n thisLayer._hoverHandler.mouseover(this, thisLayer, ev, data);\n thisLayer._dispatch.call('mouseover', this, data, thisLayer, ev);\n this.classList.add('hover')\n })\n .on('mouseout', function (this: SVGPathElement, ev: MouseEvent, data) {\n thisLayer._tooltip?.close()\n thisLayer._hoverHandler.mouseout(this, thisLayer, ev, data);\n thisLayer._dispatch.call('mouseout', this, data, thisLayer, ev);\n this.classList.remove('hover')\n })\n .on('click', function (this, ev: MouseEvent, data) {\n const latLng = thisLayer._map.layerPointToLatLng(L.point(data.x, data.y));\n thisLayer._dispatch.call('click', this, data, latLng, thisLayer, ev);\n ev.stopPropagation()\n });\n\n\n // Exit\n const exit = join.exit();\n\n exit.select('path.hexbin-hexagon')\n .transition().duration(thisLayer.options.duration)\n .attr('fill-opacity', 0)\n .attr('stroke-opacity', 0)\n .attr('d', (d) => thisLayer._hexLayout.hexagon(0));\n\n exit.transition().duration(thisLayer.options.duration).remove();\n\n }\n\n _getExtent(\n bins: HexbinBin<HexbinData<Data>>[],\n valueFn: (d: HexbinBin<HexbinData<Data>>) => number,\n scaleExtent: [number, number | undefined]\n ): [number, number] {\n\n // Determine the extent of the values\n let ext = extent<HexbinBin<HexbinData<Data>>, number>(bins, valueFn.bind(this));\n // If either's null, initialize them to 0\n if (ext[0] === undefined || ext[1] === undefined) {\n ext = [0, 0]\n }\n\n // Now apply the optional clipping of the extent\n if (undefined != scaleExtent[0]) ext[0] = scaleExtent[0];\n if (undefined != scaleExtent[1]) ext[1] = scaleExtent[1];\n\n return ext as [number, number]\n }\n\n // ------------------------------------\n // Public API\n // ------------------------------------\n\n radius(): number;\n radius(v: number): this;\n radius(v?: number): this | number {\n if (v === undefined) return this.options.radius;\n\n this.options.radius = v;\n this._hexLayout.radius(v);\n\n if (null == this.options.radiusRange) {\n this._scale.radius.range([this.options.radius, this.options.radius]).clamp(true);\n }\n\n return this;\n }\n\n opacity(): number | [number, number];\n opacity(v: number | [number, number]): this;\n opacity(v?: number | [number, number]): this | number | [number, number] {\n if (v === undefined) return this.options.opacity\n this.options.opacity = v;\n this._scale.opacity.range(typeof v === 'number' ? [v, v] : v).clamp(true);\n\n return this;\n }\n\n duration(): number;\n duration(v: number): this;\n duration(v?: number): this | number {\n if (v === undefined) return this.options.duration\n this.options.duration = v\n\n return this;\n }\n\n colorScaleExtent(): [number, number | undefined];\n colorScaleExtent(v: [number, number | undefined]): this;\n colorScaleExtent(v?: [number, number | undefined]): this | [number, number | undefined] {\n if (v === undefined) { return this.options.colorScaleExtent; }\n this.options.colorScaleExtent = v;\n\n return this;\n }\n\n radiusScaleExtent(): [number, number | undefined];\n radiusScaleExtent(v: [number, number | undefined]): this;\n radiusScaleExtent(v?: [number, number | undefined]): this | [number, number | undefined] {\n if (v === undefined) { return this.options.radiusScaleExtent; }\n this.options.radiusScaleExtent = v;\n\n return this;\n }\n\n opacityScaleExtent(): [number, number | undefined];\n opacityScaleExtent(v: [number, number | undefined]): this;\n opacityScaleExtent(v?: [number, number | undefined]): this | [number, number | undefined] {\n if (v === undefined) { return this.options.opacityScaleExtent; }\n this.options.opacityScaleExtent = v;\n\n return this;\n }\n\n\n colorRange(): string[];\n colorRange(v: string[]): this;\n colorRange(v?: string[]): this | string[] {\n if (v === undefined) { return this.options.colorRange; }\n this.options.colorRange = v;\n this._scale.color.range(v);\n\n return this;\n }\n\n radiusRange(): [number, number] | null;\n radiusRange(v: [number, number] | null): this;\n radiusRange(v?: [number, number] | null): this | [number, number] | null {\n if (v === undefined) { return this.options.radiusRange; }\n this.options.radiusRange = v;\n this._scale.radius.range(this.options.radiusRange ?? [this.options.radius, this.options.radius]).clamp(true);\n\n return this;\n }\n\n colorScale(): d3.ScaleLinear<string, string>;\n colorScale(v: d3.ScaleLinear<string, string>): this;\n colorScale(v?: d3.ScaleLinear<string, string>) {\n if (v === undefined) return this._scale.color;\n this._scale.color = v;\n return this;\n }\n\n radiusScale(): d3.ScaleLinear<number, number>;\n radiusScale(v: d3.ScaleLinear<number, number>): this;\n radiusScale(v?: d3.ScaleLinear<number, number>): this | d3.ScaleLinear<number, number> {\n if (v === undefined) return this._scale.radius\n this._scale.radius = v;\n return this;\n }\n\n lng(): (d: Data) => number;\n lng(v: (d: Data) => number): this;\n lng(v?: (d: Data) => number) {\n if (v === undefined) { return this._fn.lng; }\n this._fn.lng = v;\n\n return this;\n }\n\n lat(): (d: Data) => number;\n lat(v: (d: Data) => number): this;\n lat(v?: (d: Data) => number) {\n if (v === undefined) { return this._fn.lat; }\n this._fn.lat = v;\n\n return this;\n }\n\n colorValue(): (d: HexbinData<Data>[]) => number;\n colorValue(v: (d: HexbinData<Data>[]) => number): this;\n colorValue(v?: (d: HexbinData<Data>[]) => number) {\n if (v === undefined) { return this._fn.colorValue; }\n this._fn.colorValue = v;\n\n return this;\n }\n\n radiusValue(): (d: HexbinData<Data>[]) => number;\n radiusValue(v: (d: HexbinData<Data>[]) => number): this;\n radiusValue(v?: (d: HexbinData<Data>[]) => number) {\n if (v === undefined) { return this._fn.radiusValue; }\n this._fn.radiusValue = v;\n\n return this;\n }\n\n fill(): (d: HexbinData<Data>[]) => string;\n fill(v: (d: HexbinData<Data>[]) => string): this;\n fill(v?: (d: HexbinData<Data>[]) => string) {\n if (v === undefined) { return this._fn.fill; }\n this._fn.fill = v;\n\n return this;\n }\n\n data(): Data[];\n data(v: Data extends L.LatLngExpression ? Data[] : never): this;\n data(v: Data[], accessor?: (d: Data) => L.LatLngExpression): this;\n\n // Implementation\n data(v?: Data[] | L.LatLngExpression[], accessor?: (d: Data) => L.LatLngExpression): this | Data[] {\n if (v === undefined) {\n return this._data;\n }\n\n if (!isLatLngExpression(v[0]) && !accessor) {\n console.error(\"Leaflet hexbin: data does not appear to be an array of L.LatLngExpression. You must provide an accessor function to convert the data to L.LatLngExpression\");\n }\n\n this._data = v as Data[] ?? []\n this._accessor = accessor ?? ((d: Data) => d as L.LatLngExpression)\n\n this.redraw();\n return this;\n }\n\n /*\n * Getter for the event dispatcher\n */\n dispatch() { return this._dispatch }\n\n hoverHandler(): HexbinHoverHandler<Data>;\n hoverHandler(v: HexbinHoverHandler<Data>): this;\n hoverHandler(v?: HexbinHoverHandler<Data>): this | HexbinHoverHandler<Data> {\n if (v === undefined) { return this._hoverHandler; }\n this._hoverHandler = (null != v) ? v : HexbinHoverHandler.none();\n\n this.redraw();\n\n return this;\n }\n\n // Cannot overload bindTooltip() with data dependant content\n tooltip(tooltip: TooltipOptions<Data>): this {\n this._tooltipOptions = tooltip;\n if (this._tooltip)\n this._tooltip.options = tooltip.options ?? {};\n else {\n this._tooltip = L.tooltip(tooltip.options)\n }\n return this\n }\n\n getTooltip(): L.Tooltip | undefined {\n return this._tooltip\n }\n\n bindTooltip(content: L.Tooltip | L.Content, options?: L.TooltipOptions): this {\n if (content instanceof L.Tooltip) {\n this._tooltip = content;\n // FIXME: weird bug likely coming from vue-leaflet were tooltip is not properly positioned\n // this._tooltip.options.offset[0] -= 5;\n if (this._map) {\n this._tooltip.setLatLng([0, 0]).addTo(this._map)\n }\n } else {\n this._tooltip = L.tooltip(options).setContent(content);\n }\n return this\n }\n\n unbindTooltip(): this {\n this._tooltip?.remove();\n this._tooltip = undefined;\n return this\n }\n\n /*\n * Returns an array of the points in the path, or nested arrays of points in case of multi-polyline.\n */\n getLatLngs() {\n const that = this;\n\n // Map the data into an array of latLngs using the configured lat/lng accessors\n return this._data.map(function (d) {\n return L.latLng(that._fn.lat(d), that._fn.lng(d));\n });\n }\n /*\n * Get path geometry as GeoJSON\n */\n toGeoJSON(): GeoJSON.Feature<GeoJSON.MultiPoint, L.LatLng> {\n return L.GeoJSON.getFeature<L.LatLng, GeoJSON.MultiPoint>(this, {\n type: 'MultiPoint',\n coordinates: L.GeoJSON.latLngsToCoords(this.getLatLngs(), 0)\n });\n }\n}\n\n/**\n * Factory function to instanciate a new hexbin layer\n */\nexport function hexbinLayer<Data = L.LatLngExpression>(options?: HexbinLayerConfig) {\n return new HexbinLayer<Data>(options);\n}\n\n\n"],"names":["HexbinHoverHandler","resizeFill","svg","hexLayer","event","data","d3","d","resizeScale","radiusScale","compound","handlers","none","h","HexbinHoverHandler$1","isLatLngExpression","L","HexbinLayer","options","val","scaleLinear","dispatch","hexbin","x","_","y","select","map","_a","latlng","that","coord","point","join","enterUpdate","from","to","length","step","i","g","thisLayer","size","bounds","bins","colorExtent","radiusExtent","opacityExtent","colorDomain","radiusDomain","container","hexagons","ev","_b","latLng","exit","valueFn","scaleExtent","ext","extent","v","accessor","tooltip","content","hexbinLayer"],"mappings":"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"}
|
@@ -1,21 +1,16 @@
|
|
1
1
|
import { HexbinData, HexbinLayer } from './HexbinLayer';
|
2
|
-
export interface HexbinHoverHandler {
|
3
|
-
mouseover(svg: SVGPathElement, hexLayer: HexbinLayer
|
4
|
-
mouseout(svg: SVGPathElement, hexLayer: HexbinLayer
|
2
|
+
export interface HexbinHoverHandler<Data> {
|
3
|
+
mouseover(svg: SVGPathElement, hexLayer: HexbinLayer<Data>, event: MouseEvent, data: HexbinData<Data>[]): void;
|
4
|
+
mouseout(svg: SVGPathElement, hexLayer: HexbinLayer<Data>, event: MouseEvent, data: HexbinData<Data>[]): void;
|
5
5
|
}
|
6
6
|
export declare namespace HexbinHoverHandler {
|
7
|
-
|
8
|
-
|
9
|
-
}
|
10
|
-
export function tooltip(options?: TooltipOptions): HexbinHoverHandler;
|
11
|
-
export function resizeFill(): HexbinHoverHandler;
|
12
|
-
export interface ResizeScaleOptions {
|
7
|
+
function resizeFill(): HexbinHoverHandler<any>;
|
8
|
+
interface ResizeScaleOptions {
|
13
9
|
radiusScale?: number;
|
14
10
|
duration?: number;
|
15
11
|
}
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
export {};
|
12
|
+
function resizeScale(radiusScale?: number): HexbinHoverHandler<any>;
|
13
|
+
function compound<Data>(handlers?: HexbinHoverHandler<Data>[]): HexbinHoverHandler<Data>;
|
14
|
+
function none(): HexbinHoverHandler<any>;
|
20
15
|
}
|
21
16
|
export default HexbinHoverHandler;
|
@@ -7,6 +7,10 @@ declare module 'leaflet' {
|
|
7
7
|
_container: SVGElementTagNameMap['svg'];
|
8
8
|
}
|
9
9
|
}
|
10
|
+
type TooltipOptions<Data> = {
|
11
|
+
options?: L.TooltipOptions;
|
12
|
+
content?: L.Content | ((d: HexbinData<Data>[]) => L.Content);
|
13
|
+
};
|
10
14
|
export interface HexbinLayerConfig {
|
11
15
|
/**
|
12
16
|
* Hex grid cell radius in pixels.
|
@@ -78,23 +82,24 @@ export interface HexbinLayerConfig {
|
|
78
82
|
/**
|
79
83
|
* Hexbin data attached to each hexagon, once binned.
|
80
84
|
*/
|
81
|
-
export type HexbinData = {
|
82
|
-
|
85
|
+
export type HexbinData<Data> = {
|
86
|
+
data: Data;
|
87
|
+
coord: L.LatLngExpression;
|
83
88
|
point: Readonly<[number, number]>;
|
84
89
|
};
|
85
90
|
/**
|
86
91
|
* Instantiate a hexbin layer.
|
87
92
|
* Extends L.SVG to take advantage of built-in zoom animations.
|
88
93
|
*/
|
89
|
-
export declare class HexbinLayer extends L.SVG
|
94
|
+
export declare class HexbinLayer<Data = L.LatLngExpression> extends L.SVG {
|
90
95
|
options: Required<HexbinLayerConfig> & L.RendererOptions;
|
91
96
|
_fn: {
|
92
|
-
lng: (d:
|
93
|
-
lat: (d:
|
94
|
-
colorValue: (d: HexbinData[]) => number;
|
95
|
-
radiusValue: (d: HexbinData[]) => number;
|
96
|
-
opacityValue: (d: HexbinData[]) => number;
|
97
|
-
fill: (d: HexbinData[]) => string;
|
97
|
+
lng: (d: Data) => number;
|
98
|
+
lat: (d: Data) => number;
|
99
|
+
colorValue: (d: HexbinData<Data>[]) => number;
|
100
|
+
radiusValue: (d: HexbinData<Data>[]) => number;
|
101
|
+
opacityValue: (d: HexbinData<Data>[]) => number;
|
102
|
+
fill: (d: HexbinData<Data>[]) => string;
|
98
103
|
};
|
99
104
|
_scale: {
|
100
105
|
color: import('d3').ScaleLinear<string, string, never>;
|
@@ -102,13 +107,16 @@ export declare class HexbinLayer extends L.SVG implements HexbinLayer {
|
|
102
107
|
opacity: import('d3').ScaleLinear<number, number, never>;
|
103
108
|
};
|
104
109
|
_dispatch: import('d3').Dispatch<SVGPathElement>;
|
105
|
-
_hoverHandler: HexbinHoverHandler
|
106
|
-
_hexLayout: import('d3-hexbin').Hexbin<HexbinData
|
107
|
-
_data:
|
110
|
+
_hoverHandler: HexbinHoverHandler<Data>;
|
111
|
+
_hexLayout: import('d3-hexbin').Hexbin<HexbinData<Data>>;
|
112
|
+
_data: Data[];
|
108
113
|
_map: L.Map;
|
114
|
+
_tooltipOptions: TooltipOptions<Data>;
|
115
|
+
_tooltip: L.Tooltip | undefined;
|
109
116
|
_container: SVGElementTagNameMap['svg'];
|
110
117
|
_d3Container: d3.Selection<SVGGElement, unknown, null, undefined>;
|
111
118
|
constructor(options?: HexbinLayerConfig);
|
119
|
+
_accessor(d: Data): L.LatLngExpression;
|
112
120
|
/**
|
113
121
|
* Create the SVG container for the hexbins
|
114
122
|
* @private
|
@@ -136,8 +144,8 @@ export declare class HexbinLayer extends L.SVG implements HexbinLayer {
|
|
136
144
|
*/
|
137
145
|
redraw(): void;
|
138
146
|
_linearlySpace(from: number, to: number, length: number): number[];
|
139
|
-
_createHexagons(g: d3.Selection<SVGGElement, number, SVGGElement, unknown>, data: HexbinData[]): void;
|
140
|
-
_getExtent(bins: HexbinBin<HexbinData
|
147
|
+
_createHexagons(g: d3.Selection<SVGGElement, number, SVGGElement, unknown>, data: HexbinData<Data>[]): void;
|
148
|
+
_getExtent(bins: HexbinBin<HexbinData<Data>>[], valueFn: (d: HexbinBin<HexbinData<Data>>) => number, scaleExtent: [number, number | undefined]): [number, number];
|
141
149
|
radius(): number;
|
142
150
|
radius(v: number): this;
|
143
151
|
opacity(): number | [number, number];
|
@@ -158,25 +166,31 @@ export declare class HexbinLayer extends L.SVG implements HexbinLayer {
|
|
158
166
|
colorScale(v: d3.ScaleLinear<string, string>): this;
|
159
167
|
radiusScale(): d3.ScaleLinear<number, number>;
|
160
168
|
radiusScale(v: d3.ScaleLinear<number, number>): this;
|
161
|
-
lng(): (d:
|
162
|
-
lng(v: (d:
|
163
|
-
lat(): (d:
|
164
|
-
lat(v: (d:
|
165
|
-
colorValue(): (d: HexbinData[]) => number;
|
166
|
-
colorValue(v: (d: HexbinData[]) => number): this;
|
167
|
-
radiusValue(): (d: HexbinData[]) => number;
|
168
|
-
radiusValue(v: (d: HexbinData[]) => number): this;
|
169
|
-
fill(): (d: HexbinData[]) => string;
|
170
|
-
fill(v: (d: HexbinData[]) => string): this;
|
171
|
-
data():
|
172
|
-
data(v: L.LatLngExpression[]): this;
|
169
|
+
lng(): (d: Data) => number;
|
170
|
+
lng(v: (d: Data) => number): this;
|
171
|
+
lat(): (d: Data) => number;
|
172
|
+
lat(v: (d: Data) => number): this;
|
173
|
+
colorValue(): (d: HexbinData<Data>[]) => number;
|
174
|
+
colorValue(v: (d: HexbinData<Data>[]) => number): this;
|
175
|
+
radiusValue(): (d: HexbinData<Data>[]) => number;
|
176
|
+
radiusValue(v: (d: HexbinData<Data>[]) => number): this;
|
177
|
+
fill(): (d: HexbinData<Data>[]) => string;
|
178
|
+
fill(v: (d: HexbinData<Data>[]) => string): this;
|
179
|
+
data(): Data[];
|
180
|
+
data(v: Data extends L.LatLngExpression ? Data[] : never): this;
|
181
|
+
data(v: Data[], accessor?: (d: Data) => L.LatLngExpression): this;
|
173
182
|
dispatch(): import('d3').Dispatch<SVGPathElement>;
|
174
|
-
hoverHandler(): HexbinHoverHandler
|
175
|
-
hoverHandler(v: HexbinHoverHandler): this;
|
183
|
+
hoverHandler(): HexbinHoverHandler<Data>;
|
184
|
+
hoverHandler(v: HexbinHoverHandler<Data>): this;
|
185
|
+
tooltip(tooltip: TooltipOptions<Data>): this;
|
186
|
+
getTooltip(): L.Tooltip | undefined;
|
187
|
+
bindTooltip(content: L.Tooltip | L.Content, options?: L.TooltipOptions): this;
|
188
|
+
unbindTooltip(): this;
|
176
189
|
getLatLngs(): L.LatLng[];
|
177
190
|
toGeoJSON(): GeoJSON.Feature<GeoJSON.MultiPoint, L.LatLng>;
|
178
191
|
}
|
179
192
|
/**
|
180
193
|
* Factory function to instanciate a new hexbin layer
|
181
194
|
*/
|
182
|
-
export declare function hexbinLayer(options?: HexbinLayerConfig): HexbinLayer
|
195
|
+
export declare function hexbinLayer<Data = L.LatLngExpression>(options?: HexbinLayerConfig): HexbinLayer<Data>;
|
196
|
+
export {};
|