TerraPanoramaSkin: scrollTop and scrollLeft are not used after
Ah, I see - the warning is just saying that the variable is only
used once
(same as above). This is intentional. I often do this to assist in
debugging. You can ignore these.
If you want I could change in a way to keep the variable (for example
to help in debugging as you said), and drop the warning, like this: ok
?
// panorama.setScrollTop(maxScrollTop);
// scrollTop = maxScrollTop;
scrollTop = maxScrollTop;
panorama.setScrollTop(scrollTop);
Thanks, but I think we should leave it as-is.