@@ -156,7 +156,7 @@ export class ArcModel extends BaseArrowLayerModel {
156156 for ( let batchIdx = 0 ; batchIdx < this . table . batches . length ; batchIdx ++ ) {
157157 layers . push (
158158 new GeoArrowArcLayer ( {
159- ...this . baseLayerProps ( ) ,
159+ ...this . baseLayerProps ( batchIdx ) ,
160160 ...this . layerProps ( batchIdx ) ,
161161 } ) ,
162162 ) ;
@@ -417,7 +417,7 @@ export class ColumnModel extends BaseArrowLayerModel {
417417 for ( let batchIdx = 0 ; batchIdx < this . table . batches . length ; batchIdx ++ ) {
418418 layers . push (
419419 new GeoArrowColumnLayer ( {
420- ...this . baseLayerProps ( ) ,
420+ ...this . baseLayerProps ( batchIdx ) ,
421421 ...this . layerProps ( batchIdx ) ,
422422 } ) ,
423423 ) ;
@@ -491,7 +491,7 @@ export class HeatmapModel extends BaseArrowLayerModel {
491491 for ( let batchIdx = 0 ; batchIdx < this . table . batches . length ; batchIdx ++ ) {
492492 layers . push (
493493 new GeoArrowHeatmapLayer ( {
494- ...this . baseLayerProps ( ) ,
494+ ...this . baseLayerProps ( batchIdx ) ,
495495 ...this . layerProps ( batchIdx ) ,
496496 } ) ,
497497 ) ;
@@ -561,7 +561,7 @@ export class PathModel extends BaseArrowLayerModel {
561561 for ( let batchIdx = 0 ; batchIdx < this . table . batches . length ; batchIdx ++ ) {
562562 layers . push (
563563 new GeoArrowPathLayer ( {
564- ...this . baseLayerProps ( ) ,
564+ ...this . baseLayerProps ( batchIdx ) ,
565565 ...this . layerProps ( batchIdx ) ,
566566 } ) ,
567567 ) ;
@@ -610,7 +610,7 @@ export class PointCloudModel extends BaseArrowLayerModel {
610610 for ( let batchIdx = 0 ; batchIdx < this . table . batches . length ; batchIdx ++ ) {
611611 layers . push (
612612 new GeoArrowPointCloudLayer ( {
613- ...this . baseLayerProps ( ) ,
613+ ...this . baseLayerProps ( batchIdx ) ,
614614 ...this . layerProps ( batchIdx ) ,
615615 } ) ,
616616 ) ;
@@ -715,7 +715,7 @@ export class PolygonModel extends BaseArrowLayerModel {
715715 for ( let batchIdx = 0 ; batchIdx < this . table . batches . length ; batchIdx ++ ) {
716716 layers . push (
717717 new GeoArrowPolygonLayer ( {
718- ...this . baseLayerProps ( ) ,
718+ ...this . baseLayerProps ( batchIdx ) ,
719719 ...this . layerProps ( batchIdx ) ,
720720 } ) ,
721721 ) ;
@@ -827,7 +827,7 @@ export class ScatterplotModel extends BaseArrowLayerModel {
827827 for ( let batchIdx = 0 ; batchIdx < this . table . batches . length ; batchIdx ++ ) {
828828 layers . push (
829829 new GeoArrowScatterplotLayer ( {
830- ...this . baseLayerProps ( ) ,
830+ ...this . baseLayerProps ( batchIdx ) ,
831831 ...this . layerProps ( batchIdx ) ,
832832 } ) ,
833833 ) ;
@@ -890,7 +890,7 @@ export class SolidPolygonModel extends BaseArrowLayerModel {
890890 for ( let batchIdx = 0 ; batchIdx < this . table . batches . length ; batchIdx ++ ) {
891891 layers . push (
892892 new GeoArrowSolidPolygonLayer ( {
893- ...this . baseLayerProps ( ) ,
893+ ...this . baseLayerProps ( batchIdx ) ,
894894 ...this . layerProps ( batchIdx ) ,
895895 } ) ,
896896 ) ;
@@ -1159,7 +1159,7 @@ export class TextModel extends BaseArrowLayerModel {
11591159 for ( let batchIdx = 0 ; batchIdx < this . table . batches . length ; batchIdx ++ ) {
11601160 layers . push (
11611161 new GeoArrowTextLayer ( {
1162- ...this . baseLayerProps ( ) ,
1162+ ...this . baseLayerProps ( batchIdx ) ,
11631163 ...this . layerProps ( batchIdx ) ,
11641164 } ) ,
11651165 ) ;
@@ -1242,7 +1242,7 @@ export class TripsModel extends BaseArrowLayerModel {
12421242 for ( let batchIdx = 0 ; batchIdx < this . table . batches . length ; batchIdx ++ ) {
12431243 layers . push (
12441244 new GeoArrowTripsLayer ( {
1245- ...this . baseLayerProps ( ) ,
1245+ ...this . baseLayerProps ( batchIdx ) ,
12461246 ...this . layerProps ( batchIdx ) ,
12471247 } ) ,
12481248 ) ;
0 commit comments