webglearth / webglearth2

[UNMAINTAINED] WebGL Earth 2 - the source code of the project
Apache License 2.0
884 stars 212 forks source link

on 'zoom' event #93

Closed kingio closed 7 years ago

kingio commented 7 years ago

I've checked http://www.webglearth.org/ and it talks about on(type:string, function(event)) : number?, that "Registers function to be called when certain event occurs", but doesn't list which events can you listen I've tried mousewheel and zoom but it doesn't get triggered.

¿Is there any way to detect zoom changes?

kingio commented 7 years ago
this.earth.on("wheel", function (event) {
                console.log(event);
            });