Hi all,
I'm using mmpk project with group layers,
when I want to turn on featureCollectionLayers the code
layer.isVisible = true
works fine, however after I've updated the sdk to 100.7.0 the code to make layers visible doesn't work any more:
layers.forEach {
if (it is GroupLayer){
legendGroupMap[it.name] = it.layers
it.layers.forEach{ mLayers->
mLayers.isVisible = true
}
}
how do i make layers inside a group layer visible in 100.7.0?
thanks in advance.