Skip to content

Commit

Permalink
fixed bug in extent calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
martinchristen committed Aug 1, 2013
1 parent e47150c commit 678d20d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/3d-streaming/demo.js
Expand Up @@ -102,7 +102,7 @@ function AddVersion(object)
function AddBounds(object, extent)
{
var m0 = WGS84ToMercator(extent[0],extent[1]);
var m1 = WGS84ToMercator(extent[1],extent[2]);
var m1 = WGS84ToMercator(extent[2],extent[3]);

object["Bounds"] = [m0[0],m0[1],m1[0],m1[1]];
}
Expand Down

0 comments on commit 678d20d

Please sign in to comment.