Skip to content

Commit

Permalink
no button terrain
Browse files Browse the repository at this point in the history
  • Loading branch information
lstiz committed Feb 17, 2025
1 parent 9066dc3 commit 0a4a8a3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions exemples/mapicgcgljs/icgc-terrain-rgb-mapicgc-code.html
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
trackUserLocation: true,
}
);
map.addTerrainICGC(data.Terrains.ICGC5M, "bottom-right");
map.addTerrainICGC(data.Terrains.ICGC5M);
map.setSky()


Expand All @@ -171,7 +171,7 @@

const layerId = layer.target.id;
console.log('layer', layerId)
map.addTerrainICGC(data.Terrains[layerId], "bottom-right");
map.addTerrainICGC(data.Terrains[layerId]);
}

for (let i = 0; i < inputs.length; i++) {
Expand Down
4 changes: 2 additions & 2 deletions exemples/mapicgcgljs/icgc-terrain-rgb-mapicgc-map.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
trackUserLocation: true,
}
);
map.addTerrainICGC(data.Terrains.ICGC5M, "bottom-right");
map.addTerrainICGC(data.Terrains.ICGC5M);
map.setSky()


Expand All @@ -78,7 +78,7 @@

const layerId = layer.target.id;
console.log('layer', layerId)
map.addTerrainICGC(data.Terrains[layerId], "bottom-right");
map.addTerrainICGC(data.Terrains[layerId]);
}

for (let i = 0; i < inputs.length; i++) {
Expand Down

0 comments on commit 0a4a8a3

Please sign in to comment.