Hi,
I'm having some trouble with a thing that I thought it would be really simple after the release of the latest version of KRPano (krpano 1.0.8.15).
What I'm trying to create is this:
I have a layer/plugin with an image:
|
Source code
|
1
|
<layer name="map" keep="true" url="img/fp_1st.png" align="centertop" edge="top" />
|
Then I've created an empty container layer/plugin and assigned it as child of the first layer:
|
Source code
|
1
|
<layer name="container" keep="true" type="container" parent="map" />
|
This should create an empty container right?
Then I've assigned a child of this container like this:
|
Source code
|
1
|
<layer name="child1" keep="true" url="common/mappoint.png" parent="container" align="center" />
|
Now I should be able to hide the container layer/plugin and have the child1 layer/plugin hidden right? The problem is that child1 is not even visible in the first place.
Am I doing something wrong here?