Skip to content

Commit

Permalink
correct import
Browse files Browse the repository at this point in the history
  • Loading branch information
jleedev committed Sep 23, 2024
1 parent 1394349 commit 021c041
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/layer/hillshade.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { hillshadeShadow, hillshadeHighlight } from "../constants/color";
import * as Color from "../constants/color.js";

export const hillshading = {
id: "hillshading",
Expand All @@ -17,7 +17,7 @@ export const hillshading = {
17,
0.1,
],
"hillshade-shadow-color": hillshadeShadow,
"hillshade-highlight-color": hillshadeHighlight,
"hillshade-shadow-color": Color.hillshadeShadow,
"hillshade-highlight-color": Color.hillshadeHighlight,
},
};

0 comments on commit 021c041

Please sign in to comment.