Debugged.

This commit is contained in:
Tim Schaub
2012-06-19 10:39:42 +02:00
parent 738561e417
commit 90f33c587a
6 changed files with 59 additions and 47 deletions

View File

@@ -1,11 +1,11 @@
describe("ol.Location", function() {
describe("ol.Loc", function() {
it("allows flexible construction", function() {
var loc;
// nowhere
loc = ol.loc();
expect(loc instanceof ol.Location).toBe(true);
expect(loc instanceof ol.Loc).toBe(true);
// obj config
loc = ol.loc({x: 10, y: 20});
@@ -80,7 +80,7 @@ describe("ol.Location", function() {
var loc = ol.loc({x: 10, y: 20, projection: "EPSG:4326"});
var trans = loc.transform("EPSG:3857");
expect(trans instanceof ol.Location).toBe(true);
expect(trans instanceof ol.Loc).toBe(true);
expect(trans.projection().code()).toBe("EPSG:3857");
expect(trans.x().toFixed(3)).toBe("1113194.908");
expect(trans.y().toFixed(3)).toBe("2273030.927");
@@ -95,7 +95,7 @@ describe("ol.Location", function() {
var loc = ol.loc({x: 1113195, y: 2273031, projection: "EPSG:3857"});
var trans = loc.transform("EPSG:4326");
expect(trans instanceof ol.Location).toBe(true);
expect(trans instanceof ol.Loc).toBe(true);
expect(trans.projection().code()).toBe("EPSG:4326");
expect(trans.x().toFixed(3)).toBe("10.000");
expect(trans.y().toFixed(3)).toBe("20.000");

View File

@@ -21,7 +21,7 @@ describe("ol.Map", function() {
center = map.center();
expect(center.x().toFixed(3)).toBe("-110.000");
expect(center.y().toFixed(3)).toBe("45.000");
expect(center instanceof ol.Location).toBe(true);
expect(center instanceof ol.Loc).toBe(true);
// with object literal
map.center({x: -111, y: 46});
@@ -29,7 +29,7 @@ describe("ol.Map", function() {
center = map.center();
expect(center.x().toFixed(3)).toBe("-111.000");
expect(center.y().toFixed(3)).toBe("46.000");
expect(center instanceof ol.Location).toBe(true);
expect(center instanceof ol.Loc).toBe(true);
// more verbose
map = ol.map({
@@ -39,7 +39,7 @@ describe("ol.Map", function() {
center = map.center();
expect(center.x().toFixed(3)).toBe("-112.000");
expect(center.y().toFixed(3)).toBe("47.000");
expect(center instanceof ol.Location).toBe(true);
expect(center instanceof ol.Loc).toBe(true);
});