Add final data points layer to map

This commit is contained in:
D. Berge
2025-08-08 12:43:27 +02:00
parent 4957142fb1
commit bc237cb685

View File

@@ -579,6 +579,7 @@ export default {
layersAvailable: {},
sequenceDataElements: [],
sequenceBinaryData: { positions: new Float32Array(0), values: [], udv: 2 },
sequenceBinaryDataFinal: { positions: new Float32Array(0), values: [], udv: 3 },
sequenceDataTStamp: null,
loadingProgress: null,
viewState: {},
@@ -619,6 +620,8 @@ export default {
return this.getSequenceBinaryData(2); // Raw + gun data
},
sequenceBinaryDataFinal() {
return this.getSequenceBinaryData(3); // Final + c-o data
},
*/
@@ -1342,7 +1345,7 @@ export default {
this.layersAvailable.seqrp = this.rawSequencesPointsLayer;
//this.layersAvailable.seqfp = this.rawSequencesPointsGunDataLayer;
this.layersAvailable.seqfp = this.finalSequencesPointsLayer;
this.layersAvailable.seqrh = this.heatmapLayer;