-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Gallery::Imagery Layers Split #5781
Comments
Good suggestion, thanks @pasu! |
The above update doesn't support PointerEvents. Maybe use ScreenSpaceEventHandler instead? |
Well, I will try and test this idea later, thanks @emackey |
I got this new skill, @emackey
|
@pasu Awesome! Would you be willing to contribute this back to the Sandcastle demo for us? We would need a CLA (unless you work for a company that already signed a Cesium CLA). |
We have a CLA from @pasu already 😄 |
Yes, I registered CLA:smile: |
I think the Sandcastle cleanup could be separate from #5780. Sounds like it should wait for that one to get merged first. |
Unrelated to this issue: |
Hi,
A little suggestion:
https://pasu.github.io/ExamplesforCesium/examples/examples.html#Visualization-Planet
I make this demo Imagery Layers Split, which is similiar with Cesiums'.
One day I browsed this demo and found it did not support touch event
Here is my modification and I tested it was fine:
document.getElementById('slider').addEventListener('mousedown', mouseDown, false);
document.getElementById('slider').addEventListener('touchstart', mouseDown, false);
window.addEventListener('mouseup', mouseUp, false);
window.addEventListener('touchend', mouseUp, false);
The text was updated successfully, but these errors were encountered: