Hi,
i cannot hide or unhide a Layer.
public ArcGISMapComponent arcgismap;
void Start()
{
var layer_1 = arcgismap.Layers[1];
layer_1.IsVisible = false;
layer_1.Opacity = 0f;
}
i get the name of the Layer but "Is.Visible" and "Opacitiy" is not working.
What am i doing wrong?
Greets
Ingmar