-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathmap.js
936 lines (771 loc) · 28.1 KB
/
map.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
'use strict';
var maplibregl = require('maplibre-gl');
var Lib = require('../../lib');
var geoUtils = require('../../lib/geo_location_utils');
var Registry = require('../../registry');
var Axes = require('../cartesian/axes');
var dragElement = require('../../components/dragelement');
var Fx = require('../../components/fx');
var dragHelpers = require('../../components/dragelement/helpers');
var drawMode = dragHelpers.drawMode;
var selectMode = dragHelpers.selectMode;
var prepSelect = require('../../components/selections').prepSelect;
var clearOutline = require('../../components/selections').clearOutline;
var clearSelectionsCache = require('../../components/selections').clearSelectionsCache;
var selectOnClick = require('../../components/selections').selectOnClick;
var constants = require('./constants');
var createMapLayer = require('./layers');
function Map(gd, id) {
this.id = id;
this.gd = gd;
var fullLayout = gd._fullLayout;
var context = gd._context;
this.container = fullLayout._glcontainer.node();
this.isStatic = context.staticPlot;
// unique id for this Map instance
this.uid = fullLayout._uid + '-' + this.id;
// create framework on instantiation for a smoother first plot call
this.div = null;
this.xaxis = null;
this.yaxis = null;
this.createFramework(fullLayout);
// state variables used to infer how and what to update
this.map = null;
this.styleObj = null;
this.traceHash = {};
this.layerList = [];
this.belowLookup = {};
this.dragging = false;
this.wheeling = false;
}
var proto = Map.prototype;
proto.plot = function(calcData, fullLayout, promises) {
var self = this;
var promise;
if(!self.map) {
promise = new Promise(function(resolve, reject) {
self.createMap(calcData, fullLayout, resolve, reject);
});
} else {
promise = new Promise(function(resolve, reject) {
self.updateMap(calcData, fullLayout, resolve, reject);
});
}
promises.push(promise);
};
proto.createMap = function(calcData, fullLayout, resolve, reject) {
var self = this;
var opts = fullLayout[self.id];
// store style id and URL or object
var styleObj = self.styleObj = getStyleObj(opts.style);
var bounds = opts.bounds;
var maxBounds = bounds ? [[bounds.west, bounds.south], [bounds.east, bounds.north]] : null;
// create the map!
var map = self.map = new maplibregl.Map({
container: self.div,
style: styleObj.style,
center: convertCenter(opts.center),
zoom: opts.zoom,
bearing: opts.bearing,
pitch: opts.pitch,
maxBounds: maxBounds,
interactive: !self.isStatic,
preserveDrawingBuffer: self.isStatic,
doubleClickZoom: false,
boxZoom: false,
attributionControl: false
})
.addControl(new maplibregl.AttributionControl({
compact: true
}));
var requestedIcons = {};
map.on('styleimagemissing', function(e) {
var id = e.id;
if(!requestedIcons[id] && id.includes('-15')) {
requestedIcons[id] = true;
var img = new Image(15, 15);
img.onload = function() {
map.addImage(id, img);
};
img.crossOrigin = 'Anonymous';
img.src = 'https://unpkg.com/[email protected]/icons/' + id + '.svg';
}
});
map.setTransformRequest(function(url) {
url = url.replace('https://fonts.openmaptiles.org/Open Sans Extrabold', 'https://fonts.openmaptiles.org/Open Sans Extra Bold');
url = url.replace('https://tiles.basemaps.cartocdn.com/fonts/Open Sans Extrabold', 'https://fonts.openmaptiles.org/Open Sans Extra Bold');
url = url.replace('https://fonts.openmaptiles.org/Open Sans Regular,Arial Unicode MS Regular', 'https://fonts.openmaptiles.org/Klokantech Noto Sans Regular');
return {
url: url
};
});
// make sure canvas does not inherit left and top css
map._canvas.style.left = '0px';
map._canvas.style.top = '0px';
self.rejectOnError(reject);
if(!self.isStatic) {
self.initFx(calcData, fullLayout);
}
var promises = [];
promises.push(new Promise(function(resolve) {
map.once('load', resolve);
}));
promises = promises.concat(geoUtils.fetchTraceGeoData(calcData));
Promise.all(promises).then(function() {
self.fillBelowLookup(calcData, fullLayout);
self.updateData(calcData);
self.updateLayout(fullLayout);
self.resolveOnRender(resolve);
}).catch(reject);
};
proto.updateMap = function(calcData, fullLayout, resolve, reject) {
var self = this;
var map = self.map;
var opts = fullLayout[this.id];
self.rejectOnError(reject);
var promises = [];
var styleObj = getStyleObj(opts.style);
if(JSON.stringify(self.styleObj) !== JSON.stringify(styleObj)) {
self.styleObj = styleObj;
map.setStyle(styleObj.style);
// need to rebuild trace layers on reload
// to avoid 'lost event' errors
self.traceHash = {};
promises.push(new Promise(function(resolve) {
map.once('styledata', resolve);
}));
}
promises = promises.concat(geoUtils.fetchTraceGeoData(calcData));
Promise.all(promises).then(function() {
self.fillBelowLookup(calcData, fullLayout);
self.updateData(calcData);
self.updateLayout(fullLayout);
self.resolveOnRender(resolve);
}).catch(reject);
};
proto.fillBelowLookup = function(calcData, fullLayout) {
var opts = fullLayout[this.id];
var layers = opts.layers;
var i, val;
var belowLookup = this.belowLookup = {};
var hasTraceAtTop = false;
for(i = 0; i < calcData.length; i++) {
var trace = calcData[i][0].trace;
var _module = trace._module;
if(typeof trace.below === 'string') {
val = trace.below;
} else if(_module.getBelow) {
// 'smart' default that depend the map's base layers
val = _module.getBelow(trace, this);
}
if(val === '') {
hasTraceAtTop = true;
}
belowLookup['trace-' + trace.uid] = val || '';
}
for(i = 0; i < layers.length; i++) {
var item = layers[i];
if(typeof item.below === 'string') {
val = item.below;
} else if(hasTraceAtTop) {
// if one or more trace(s) set `below:''` and
// layers[i].below is unset,
// place layer below traces
val = 'traces';
} else {
val = '';
}
belowLookup['layout-' + i] = val;
}
// N.B. If multiple layers have the 'below' value,
// we must clear the stashed 'below' field in order
// to make `traceHash[k].update()` and `layerList[i].update()`
// remove/add the all those layers to have preserve
// the correct layer ordering
var val2list = {};
var k, id;
for(k in belowLookup) {
val = belowLookup[k];
if(val2list[val]) {
val2list[val].push(k);
} else {
val2list[val] = [k];
}
}
for(val in val2list) {
var list = val2list[val];
if(list.length > 1) {
for(i = 0; i < list.length; i++) {
k = list[i];
if(k.indexOf('trace-') === 0) {
id = k.split('trace-')[1];
if(this.traceHash[id]) {
this.traceHash[id].below = null;
}
} else if(k.indexOf('layout-') === 0) {
id = k.split('layout-')[1];
if(this.layerList[id]) {
this.layerList[id].below = null;
}
}
}
}
}
};
var traceType2orderIndex = {
choroplethmap: 0,
densitymap: 1,
scattermap: 2
};
proto.updateData = function(calcData) {
var traceHash = this.traceHash;
var traceObj, trace, i, j;
// Need to sort here by trace type here,
// in case traces with different `type` have the same
// below value, but sorting we ensure that
// e.g. choroplethmap traces will be below scattermap traces
var calcDataSorted = calcData.slice().sort(function(a, b) {
return (
traceType2orderIndex[a[0].trace.type] -
traceType2orderIndex[b[0].trace.type]
);
});
// update or create trace objects
for(i = 0; i < calcDataSorted.length; i++) {
var calcTrace = calcDataSorted[i];
trace = calcTrace[0].trace;
traceObj = traceHash[trace.uid];
var didUpdate = false;
if(traceObj) {
if(traceObj.type === trace.type) {
traceObj.update(calcTrace);
didUpdate = true;
} else {
traceObj.dispose();
}
}
if(!didUpdate && trace._module) {
traceHash[trace.uid] = trace._module.plot(this, calcTrace);
}
}
// remove empty trace objects
var ids = Object.keys(traceHash);
idLoop:
for(i = 0; i < ids.length; i++) {
var id = ids[i];
for(j = 0; j < calcData.length; j++) {
trace = calcData[j][0].trace;
if(id === trace.uid) continue idLoop;
}
traceObj = traceHash[id];
traceObj.dispose();
delete traceHash[id];
}
};
proto.updateLayout = function(fullLayout) {
var map = this.map;
var opts = fullLayout[this.id];
if(!this.dragging && !this.wheeling) {
map.setCenter(convertCenter(opts.center));
map.setZoom(opts.zoom);
map.setBearing(opts.bearing);
map.setPitch(opts.pitch);
}
this.updateLayers(fullLayout);
this.updateFramework(fullLayout);
this.updateFx(fullLayout);
this.map.resize();
if(this.gd._context._scrollZoom.map) {
map.scrollZoom.enable();
} else {
map.scrollZoom.disable();
}
};
proto.resolveOnRender = function(resolve) {
var map = this.map;
map.on('render', function onRender() {
if(map.loaded()) {
map.off('render', onRender);
// resolve at end of render loop
//
// Need a 10ms delay (0ms should suffice to skip a thread in the
// render loop) to workaround map-gl bug introduced in v1.3.0
setTimeout(resolve, 10);
}
});
};
proto.rejectOnError = function(reject) {
var map = this.map;
function handler() {
reject(new Error(constants.mapOnErrorMsg));
}
map.once('error', handler);
map.once('style.error', handler);
map.once('source.error', handler);
map.once('tile.error', handler);
map.once('layer.error', handler);
};
proto.createFramework = function(fullLayout) {
var self = this;
var div = self.div = document.createElement('div');
div.id = self.uid;
div.style.position = 'absolute';
self.container.appendChild(div);
// create mock x/y axes for hover routine
self.xaxis = {
_id: 'x',
c2p: function(v) { return self.project(v).x; }
};
self.yaxis = {
_id: 'y',
c2p: function(v) { return self.project(v).y; }
};
self.updateFramework(fullLayout);
// mock axis for hover formatting
self.mockAxis = {
type: 'linear',
showexponent: 'all',
exponentformat: 'B'
};
Axes.setConvert(self.mockAxis, fullLayout);
};
proto.initFx = function(calcData, fullLayout) {
var self = this;
var gd = self.gd;
var map = self.map;
// keep track of pan / zoom in user layout and emit relayout event
map.on('moveend', function(evt) {
if(!self.map) return;
var fullLayoutNow = gd._fullLayout;
// 'moveend' gets triggered by map.setCenter, map.setZoom,
// map.setBearing and map.setPitch.
//
// Here, we make sure that state updates amd 'plotly_relayout'
// are triggered only when the 'moveend' originates from a
// mouse target (filtering out API calls) to not
// duplicate 'plotly_relayout' events.
if(evt.originalEvent || self.wheeling) {
var optsNow = fullLayoutNow[self.id];
Registry.call('_storeDirectGUIEdit', gd.layout, fullLayoutNow._preGUI, self.getViewEdits(optsNow));
var viewNow = self.getView();
optsNow._input.center = optsNow.center = viewNow.center;
optsNow._input.zoom = optsNow.zoom = viewNow.zoom;
optsNow._input.bearing = optsNow.bearing = viewNow.bearing;
optsNow._input.pitch = optsNow.pitch = viewNow.pitch;
gd.emit('plotly_relayout', self.getViewEditsWithDerived(viewNow));
}
if(evt.originalEvent && evt.originalEvent.type === 'mouseup') {
self.dragging = false;
} else if(self.wheeling) {
self.wheeling = false;
}
if(fullLayoutNow && fullLayoutNow._rehover) {
fullLayoutNow._rehover();
}
});
map.on('wheel', function() {
self.wheeling = true;
});
map.on('mousemove', function(evt) {
var bb = self.div.getBoundingClientRect();
var xy = [
evt.originalEvent.offsetX,
evt.originalEvent.offsetY
];
evt.target.getBoundingClientRect = function() { return bb; };
self.xaxis.p2c = function() { return map.unproject(xy).lng; };
self.yaxis.p2c = function() { return map.unproject(xy).lat; };
gd._fullLayout._rehover = function() {
if(gd._fullLayout._hoversubplot === self.id && gd._fullLayout[self.id]) {
Fx.hover(gd, evt, self.id);
}
};
Fx.hover(gd, evt, self.id);
gd._fullLayout._hoversubplot = self.id;
});
function unhover() {
Fx.loneUnhover(fullLayout._hoverlayer);
}
map.on('dragstart', function() {
self.dragging = true;
unhover();
});
map.on('zoomstart', unhover);
map.on('mouseout', function() {
gd._fullLayout._hoversubplot = null;
});
function emitUpdate() {
var viewNow = self.getView();
gd.emit('plotly_relayouting', self.getViewEditsWithDerived(viewNow));
}
map.on('drag', emitUpdate);
map.on('zoom', emitUpdate);
map.on('dblclick', function() {
var optsNow = gd._fullLayout[self.id];
Registry.call('_storeDirectGUIEdit', gd.layout, gd._fullLayout._preGUI, self.getViewEdits(optsNow));
var viewInitial = self.viewInitial;
map.setCenter(convertCenter(viewInitial.center));
map.setZoom(viewInitial.zoom);
map.setBearing(viewInitial.bearing);
map.setPitch(viewInitial.pitch);
var viewNow = self.getView();
optsNow._input.center = optsNow.center = viewNow.center;
optsNow._input.zoom = optsNow.zoom = viewNow.zoom;
optsNow._input.bearing = optsNow.bearing = viewNow.bearing;
optsNow._input.pitch = optsNow.pitch = viewNow.pitch;
gd.emit('plotly_doubleclick', null);
gd.emit('plotly_relayout', self.getViewEditsWithDerived(viewNow));
});
// define event handlers on map creation, to keep one ref per map,
// so that map.on / map.off in updateFx works as expected
self.clearOutline = function() {
clearSelectionsCache(self.dragOptions);
clearOutline(self.dragOptions.gd);
};
/**
* Returns a click handler function that is supposed
* to handle clicks in pan mode.
*/
self.onClickInPanFn = function(dragOptions) {
return function(evt) {
var clickMode = gd._fullLayout.clickmode;
if(clickMode.indexOf('select') > -1) {
selectOnClick(evt.originalEvent, gd, [self.xaxis], [self.yaxis], self.id, dragOptions);
}
if(clickMode.indexOf('event') > -1) {
// TODO: this does not support right-click. If we want to support it, we
// would likely need to change map to use dragElement instead of straight
// map event binding. Or perhaps better, make a simple wrapper with the
// right mousedown, mousemove, and mouseup handlers just for a left/right click
// pie would use this too.
Fx.click(gd, evt.originalEvent);
}
};
};
};
proto.updateFx = function(fullLayout) {
var self = this;
var map = self.map;
var gd = self.gd;
if(self.isStatic) return;
function invert(pxpy) {
var obj = self.map.unproject(pxpy);
return [obj.lng, obj.lat];
}
var dragMode = fullLayout.dragmode;
var fillRangeItems;
fillRangeItems = function(eventData, poly) {
if(poly.isRect) {
var ranges = eventData.range = {};
ranges[self.id] = [
invert([poly.xmin, poly.ymin]),
invert([poly.xmax, poly.ymax])
];
} else {
var dataPts = eventData.lassoPoints = {};
dataPts[self.id] = poly.map(invert);
}
};
// Note: dragOptions is needed to be declared for all dragmodes because
// it's the object that holds persistent selection state.
// Merge old dragOptions with new to keep possibly initialized
// persistent selection state.
var oldDragOptions = self.dragOptions;
self.dragOptions = Lib.extendDeep(oldDragOptions || {}, {
dragmode: fullLayout.dragmode,
element: self.div,
gd: gd,
plotinfo: {
id: self.id,
domain: fullLayout[self.id].domain,
xaxis: self.xaxis,
yaxis: self.yaxis,
fillRangeItems: fillRangeItems
},
xaxes: [self.xaxis],
yaxes: [self.yaxis],
subplot: self.id
});
// Unregister the old handler before potentially registering
// a new one. Otherwise multiple click handlers might
// be registered resulting in unwanted behavior.
map.off('click', self.onClickInPanHandler);
if(selectMode(dragMode) || drawMode(dragMode)) {
map.dragPan.disable();
map.on('zoomstart', self.clearOutline);
self.dragOptions.prepFn = function(e, startX, startY) {
prepSelect(e, startX, startY, self.dragOptions, dragMode);
};
dragElement.init(self.dragOptions);
} else {
map.dragPan.enable();
map.off('zoomstart', self.clearOutline);
self.div.onmousedown = null;
self.div.ontouchstart = null;
self.div.removeEventListener('touchstart', self.div._ontouchstart);
// TODO: this does not support right-click. If we want to support it, we
// would likely need to change map to use dragElement instead of straight
// map event binding. Or perhaps better, make a simple wrapper with the
// right mousedown, mousemove, and mouseup handlers just for a left/right click
// pie would use this too.
self.onClickInPanHandler = self.onClickInPanFn(self.dragOptions);
map.on('click', self.onClickInPanHandler);
}
};
proto.updateFramework = function(fullLayout) {
var domain = fullLayout[this.id].domain;
var size = fullLayout._size;
var style = this.div.style;
style.width = size.w * (domain.x[1] - domain.x[0]) + 'px';
style.height = size.h * (domain.y[1] - domain.y[0]) + 'px';
style.left = size.l + domain.x[0] * size.w + 'px';
style.top = size.t + (1 - domain.y[1]) * size.h + 'px';
this.xaxis._offset = size.l + domain.x[0] * size.w;
this.xaxis._length = size.w * (domain.x[1] - domain.x[0]);
this.yaxis._offset = size.t + (1 - domain.y[1]) * size.h;
this.yaxis._length = size.h * (domain.y[1] - domain.y[0]);
};
proto.updateLayers = function(fullLayout) {
var opts = fullLayout[this.id];
var layers = opts.layers;
var layerList = this.layerList;
var i;
// if the layer arrays don't match,
// don't try to be smart,
// delete them all, and start all over.
if(layers.length !== layerList.length) {
for(i = 0; i < layerList.length; i++) {
layerList[i].dispose();
}
layerList = this.layerList = [];
for(i = 0; i < layers.length; i++) {
layerList.push(createMapLayer(this, i, layers[i]));
}
} else {
for(i = 0; i < layers.length; i++) {
layerList[i].update(layers[i]);
}
}
};
proto.destroy = function() {
if(this.map) {
this.map.remove();
this.map = null;
this.container.removeChild(this.div);
}
};
proto.toImage = function() {
this.map.stop();
return this.map.getCanvas().toDataURL();
};
// convenience wrapper to create set multiple layer
// 'layout' or 'paint options at once.
proto.setOptions = function(id, methodName, opts) {
for(var k in opts) {
this.map[methodName](id, k, opts[k]);
}
};
proto.getMapLayers = function() {
return this.map.getStyle().layers;
};
async function getClusterData (e, _map, gd, self, curveNumber, click) {
const features = _map.queryRenderedFeatures(e.point, {
layers: [e.features[0].layer.id]
});
const evt = e
evt.target = _map
var xy = [
evt.originalEvent.offsetX,
evt.originalEvent.offsetY
];
evt.target.getBoundingClientRect = function() { return bb; };
self.xaxis.p2c = function() { return _map.unproject(xy).lng; };
self.yaxis.p2c = function() { return _map.unproject(xy).lat; };
const x0 = _map.project(e.lngLat).x;
const y0 = _map.project(e.lngLat).y;
var bb = {
x0,
x1: x0 + 2,
y0,
y1: y0 + 2,
};
const clusterId = features[0].properties.cluster_id;
const clusterSource = await _map.getSource(e.features[0].source);
const point_count = features[0].properties.point_count
// Get all points under a cluster
const points = await clusterSource.getClusterLeaves(clusterId, point_count, 0)
// Assuming 'points' contains the data you want to use for the hover event
// You need to map this data to the corresponding data points in your Plotly graph
// For example, let's assume you have a mapping function `mapToPlotlyData` that does this
const plotlyData = mapToPlotlyData(points, curveNumber);
// Prepare the hover event data
const hoverData = plotlyData.map(point => {
// Convert coordinates to strings for comparison
const latStr = point.y.toFixed(4);
const lonStr = point.x.toFixed(4);
// Access the original data for the current curve
const originalData = gd.data[point.curveNumber];
// Find the matching text from the original data
const text = findMatchingText(latStr, lonStr, originalData);
return {
lon: lonStr,
lat: latStr,
curveNumber: point.curveNumber,
pointNumber: point.pointNumber,
pointIndex: point.pointNumber,
data: gd.data[point.curveNumber],
fullData: gd._fullData[point.curveNumber],
bbox: bb,
x: point.x,
y: point.y,
text: text // Include the matched text
};
});
gd._hoverdata = hoverData;
if (!click) {
// Emit the Plotly hover event
gd.emit('plotly_hover', {
event: evt, // Pass the original event if needed
points: hoverData,
xaxes: [self.xaxis], // Array of x-axes involved
yaxes: [self.yaxis], // Array of y-axes involved
xvals: hoverData.map(d => d.x), // Array of x values
yvals: hoverData.map(d => d.y), // Array of y values
});
} else {
// Emit the Plotly click event
gd.emit('plotly_click', {
event: evt.originalEvent, // Pass the original event if needed
points: hoverData,
});
}
}
// Function to find matching text for a given lat/lon in the original data
function findMatchingText(lat, lon, originalData) {
const matchIndex = originalData.lat.findIndex((latVal, index) =>
latVal === lat && originalData.lon[index] === lon
);
return matchIndex !== -1 ? originalData.text[matchIndex] : '';
}
// Example function to map cluster points to Plotly data
function mapToPlotlyData(points, curveNumber= 0) {
// Implement your logic to map cluster points to Plotly data
// This is a placeholder function
return points.map((point, index) => ({
x: point.geometry.coordinates[0],
y: point.geometry.coordinates[1],
curveNumber, // Replace with the actual curve number if needed
pointNumber: index //
// Add any other necessary data mapping
}));
}
// convenience wrapper that first check in 'below' references
// a layer that exist and then add the layer to the map,
proto.addLayer = function(opts, below) {
var map = this.map;
var gd = this.gd
if(typeof below === 'string') {
if(below === '') {
map.addLayer(opts, below);
if (opts.id.includes('cluster')) {
map.on('mouseover', opts.id, async (e) => {await getClusterData(e, map, gd, this)})
map.on('click', opts.id, async (e) => {await getClusterData(e, map, gd, this, 0, true)})
}
return;
}
var mapLayers = this.getMapLayers();
for(var i = 0; i < mapLayers.length; i++) {
if(below === mapLayers[i].id) {
map.addLayer(opts, below);
if (opts.id.includes('cluster')) {
map.on('mouseover', opts.id, async (e) => {await getClusterData(e, map, gd, this, i)})
map.on('click', opts.id, async (e) => {await getClusterData(e, map, gd, this, i, true)})
}
return;
}
}
Lib.warn([
'Trying to add layer with *below* value',
below,
'referencing a layer that does not exist',
'or that does not yet exist.'
].join(' '));
}
map.addLayer(opts);
if (opts.id.includes('cluster')) {
map.on('mouseover', opts.id, async (e) => {await getClusterData(e, map, gd, this)})
map.on('click', opts.id, async (e) => {await getClusterData(e, map, gd, this, 0, true)})
}
};
// convenience method to project a [lon, lat] array to pixel coords
proto.project = function(v) {
return this.map.project(new maplibregl.LngLat(v[0], v[1]));
};
// get map's current view values in plotly.js notation
proto.getView = function() {
var map = this.map;
var mapCenter = map.getCenter();
var lon = mapCenter.lng;
var lat = mapCenter.lat;
var center = { lon: lon, lat: lat };
var canvas = map.getCanvas();
var w = parseInt(canvas.style.width);
var h = parseInt(canvas.style.height);
return {
center: center,
zoom: map.getZoom(),
bearing: map.getBearing(),
pitch: map.getPitch(),
_derived: {
coordinates: [
map.unproject([0, 0]).toArray(),
map.unproject([w, 0]).toArray(),
map.unproject([w, h]).toArray(),
map.unproject([0, h]).toArray()
]
}
};
};
proto.getViewEdits = function(cont) {
var id = this.id;
var keys = ['center', 'zoom', 'bearing', 'pitch'];
var obj = {};
for(var i = 0; i < keys.length; i++) {
var k = keys[i];
obj[id + '.' + k] = cont[k];
}
return obj;
};
proto.getViewEditsWithDerived = function(cont) {
var id = this.id;
var obj = this.getViewEdits(cont);
obj[id + '._derived'] = cont._derived;
return obj;
};
function getStyleObj(val) {
var styleObj = {};
if(Lib.isPlainObject(val)) {
styleObj.id = val.id;
styleObj.style = val;
} else if(typeof val === 'string') {
styleObj.id = val;
if(constants.stylesMap[val]) {
styleObj.style = constants.stylesMap[val];
} else {
styleObj.style = val;
}
} else {
styleObj.id = constants.styleValueDflt;
styleObj.style = convertStyleVal(constants.styleValueDflt);
}
styleObj.transition = {duration: 0, delay: 0};
return styleObj;
}
// if style is part of the 'official' map values, add URL prefix and suffix
function convertStyleVal(val) {
return constants.styleUrlPrefix + val + '-' + constants.styleUrlSuffix;
}
function convertCenter(center) {
return [center.lon, center.lat];
}
module.exports = Map;