We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 094c245 commit 5028ea0Copy full SHA for 5028ea0
1 file changed
src/api-l.js
@@ -48,7 +48,7 @@ exportSymbolL('WebGLEarth.prototype.zoomIn', function(opt_delta) {
48
49
50
exportSymbolL('WebGLEarth.prototype.zoomOut', function(opt_delta) {
51
- this.setZoom(this.getZoom() + (goog.isNumber(opt_delta) ? opt_delta : 1));
+ this.setZoom(this.getZoom() - (goog.isNumber(opt_delta) ? opt_delta : 1));
52
});
53
54
0 commit comments