We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0578edb commit 6d080c0Copy full SHA for 6d080c0
src/essence/Basics/Layers_/Layers_.js
@@ -3620,9 +3620,9 @@ function parseConfig(configData, urlOnLayers) {
3620
3621
//Iterate over each layer
3622
for (let i = 0; i < d.length; i++) {
3623
- // check if this is a STAC catalog or collection
+ // check if this is a vector STAC catalog or collection
3624
// if so, prefetch the data and replace this entry
3625
- if (stacRegex.test(d[i].url)) {
+ if (d[i].type === "vector" && stacRegex.test(d[i].url)) {
3626
d[i] = getSTACLayers(d[i])
3627
}
3628
0 commit comments