Sandcastle vs. server app not displaying panel

Hi, I am just starting to get into working with Cesium, I am trying to learn as much as possible given the limited programming skills I possess. In this process I have been testing out on my own server here at home, I have got a problem I have no idea how to fix. I am using the Imagery Layers Manipulation demo as a base code, I changed imagery server URLS and deleted layers I did not want. In the Sandcastle this seems to work fine, yet on the actual html / script file, the panel that controls the opacity and layer management does not display.

I have picked apart the saved html file from the Sandcastle but I am no closer to a solution. Any thoughts? I can upload my code and screenshots if needed.

I have picked apart the saved html file from the Sandcastle but I am no closer to a solution. Any thoughts? I can upload my code and screenshots if needed.

http://www.pasteall.org/62729 - Server code
http://www.pasteall.org/62730 - Sandcastle code

http://www.pasteall.org/pic/96550 - screenshot demo
http://www.pasteall.org/pic/96551 - screenshot sandcastle
http://www.pasteall.org/pic/96552 - server app no toolbar panel

Hopefully this helps explain my situation?

Your toolbar is being created, it’s just showing up outside of the page boundaries.
Add this styling to the #toolbar css code: ( after border-radius: 4px; )

position: absolute;
top: 0;
left: 0;

``

Best,

Hannah

OMG, I was struggling with this for days, looking for the obvious before asking for help and it was clearly there all along. Smack the head moment for sure.

Thank you for the help :slight_smile: