Skip to content

Commit ce1587c

Browse files
committed
Move NumericDataLayer to layers/
1 parent d7421ea commit ce1587c

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

src/App.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ import { useState } from "react";
22
import { Map, NavigationControl, useControl } from "react-map-gl/maplibre";
33
import { TileLayer } from "@deck.gl/geo-layers";
44
import type { _TileLoadProps } from "@deck.gl/geo-layers";
5-
import type { NumericDataPickingInfo } from "@deck.gl/layers";
65

76
import { MapboxOverlay as DeckOverlay } from "@deck.gl/mapbox";
87

98
import ZarrReader from "./zarr";
10-
import NumericDataLayer from "./NumericDataLayer";
9+
import NumericDataLayer from "./layers/NumericDataLayer";
10+
import type { NumericDataPickingInfo } from "./layers/NumericDataLayer/types";
1111

1212
import ColormapDropdown from "./UI/Dropdown";
1313

@@ -124,7 +124,6 @@ function App() {
124124
// visible: true,
125125
// wrapLongitude: false,
126126
}),
127-
// new TestLayer(),
128127
];
129128

130129
return (

0 commit comments

Comments
 (0)