Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/deck.gl-layers/src/layers/h3-hexagon-layer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export class GeoArrowH3HexagonLayer<
...ourDefaultProps,
...otherProps,

id: `${this.props.id}-geoarrow-arc`,
id: `${this.props.id}-geoarrow-h3`,

data: {
// @ts-expect-error passed through to enable use by function accessors
Expand Down
4 changes: 2 additions & 2 deletions packages/deck.gl-layers/src/layers/path-layer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ export class GeoArrowPathLayer<
...ourDefaultProps,
...otherProps,

id: `${this.props.id}-geoarrow-path`,
id: `${this.props.id}-geoarrow-path-linestring`,
data: {
// @ts-expect-error passed through to enable use by function accessors
data: batch,
Expand Down Expand Up @@ -240,7 +240,7 @@ export class GeoArrowPathLayer<
...ourDefaultProps,
...otherProps,

id: `${this.props.id}-geoarrow-path`,
id: `${this.props.id}-geoarrow-path-multilinestring`,
data: {
// @ts-expect-error passed through to enable use by function accessors
data: batch,
Expand Down
4 changes: 2 additions & 2 deletions packages/deck.gl-layers/src/layers/scatterplot-layer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export class GeoArrowScatterplotLayer<
...ourDefaultProps,
...otherProps,

id: `${this.props.id}-geoarrow-scatterplot`,
id: `${this.props.id}-geoarrow-scatterplot-point`,
data: {
// @ts-expect-error passed through to enable use by function accessors
data: batch,
Expand Down Expand Up @@ -225,7 +225,7 @@ export class GeoArrowScatterplotLayer<
...ourDefaultProps,
...otherProps,

id: `${this.props.id}-geoarrow-scatterplot`,
id: `${this.props.id}-geoarrow-scatterplot-multipoint`,
data: {
// @ts-expect-error passed through to enable use by function accessors
data: batch,
Expand Down
2 changes: 1 addition & 1 deletion packages/deck.gl-layers/src/layers/solid-polygon-layer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ export class GeoArrowSolidPolygonLayer<
...ourDefaultProps,
...otherProps,

id: `${this.props.id}-geoarrow-point`,
id: `${this.props.id}-geoarrow-solid-polygon`,
data: {
// @ts-expect-error passed through to enable use by function accessors
data: batch,
Expand Down
2 changes: 1 addition & 1 deletion packages/deck.gl-layers/src/layers/text-layer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ export class GeoArrowTextLayer<
...ourDefaultProps,
...otherProps,

id: `${this.props.id}-geoarrow-heatmap`,
id: `${this.props.id}-geoarrow-text`,
data: {
// @ts-expect-error passed through to enable use by function accessors
data: batch,
Expand Down