Skip to content

Commit 5028ea0

Browse files
committed
fix zoomOut zooms in
1 parent 094c245 commit 5028ea0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/api-l.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ exportSymbolL('WebGLEarth.prototype.zoomIn', function(opt_delta) {
4848

4949

5050
exportSymbolL('WebGLEarth.prototype.zoomOut', function(opt_delta) {
51-
this.setZoom(this.getZoom() + (goog.isNumber(opt_delta) ? opt_delta : 1));
51+
this.setZoom(this.getZoom() - (goog.isNumber(opt_delta) ? opt_delta : 1));
5252
});
5353

5454

0 commit comments

Comments
 (0)