2013-11-08 05:54:33 +08:00
|
|
|
describe('Polyline', function () {
|
2013-03-02 05:49:20 +08:00
|
|
|
|
2013-02-20 06:03:37 +08:00
|
|
|
var c = document.createElement('div');
|
|
|
|
c.style.width = '400px';
|
|
|
|
c.style.height = '400px';
|
|
|
|
var map = new L.Map(c);
|
|
|
|
map.setView(new L.LatLng(55.8, 37.6), 6);
|
2013-03-02 05:49:20 +08:00
|
|
|
|
2013-11-08 05:54:33 +08:00
|
|
|
describe("#initialize", function () {
|
2013-02-20 06:03:37 +08:00
|
|
|
it("doesn't overwrite the given latlng array", function () {
|
|
|
|
var originalLatLngs = [
|
|
|
|
[1, 2],
|
|
|
|
[3, 4]
|
|
|
|
];
|
|
|
|
var sourceLatLngs = originalLatLngs.slice();
|
|
|
|
|
|
|
|
var polyline = new L.Polyline(sourceLatLngs);
|
|
|
|
|
2013-03-02 05:49:20 +08:00
|
|
|
expect(sourceLatLngs).to.eql(originalLatLngs);
|
|
|
|
expect(polyline._latlngs).to.not.eql(sourceLatLngs);
|
2015-03-06 16:14:00 +08:00
|
|
|
expect(polyline.getLatLngs()).to.eql(polyline._latlngs);
|
2013-02-20 06:03:37 +08:00
|
|
|
});
|
2015-03-06 16:14:00 +08:00
|
|
|
|
|
|
|
it("should accept a multi", function () {
|
|
|
|
var latLngs = [
|
|
|
|
[[1, 2], [3, 4], [5, 6]],
|
|
|
|
[[11, 12], [13, 14], [15, 16]]
|
|
|
|
];
|
|
|
|
|
|
|
|
var polyline = new L.Polyline(latLngs);
|
|
|
|
|
|
|
|
expect(polyline._latlngs[0]).to.eql([L.latLng([1, 2]), L.latLng([3, 4]), L.latLng([5, 6])]);
|
|
|
|
expect(polyline._latlngs[1]).to.eql([L.latLng([11, 12]), L.latLng([13, 14]), L.latLng([15, 16])]);
|
|
|
|
expect(polyline.getLatLngs()).to.eql(polyline._latlngs);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should accept an empty array", function () {
|
|
|
|
|
|
|
|
var polyline = new L.Polyline([]);
|
|
|
|
|
|
|
|
expect(polyline._latlngs).to.eql([]);
|
|
|
|
expect(polyline.getLatLngs()).to.eql(polyline._latlngs);
|
|
|
|
});
|
|
|
|
|
2013-02-20 06:03:37 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
describe("#setLatLngs", function () {
|
|
|
|
it("doesn't overwrite the given latlng array", function () {
|
|
|
|
var originalLatLngs = [
|
|
|
|
[1, 2],
|
|
|
|
[3, 4]
|
|
|
|
];
|
|
|
|
var sourceLatLngs = originalLatLngs.slice();
|
|
|
|
|
|
|
|
var polyline = new L.Polyline(sourceLatLngs);
|
|
|
|
|
|
|
|
polyline.setLatLngs(sourceLatLngs);
|
|
|
|
|
2013-03-02 05:49:20 +08:00
|
|
|
expect(sourceLatLngs).to.eql(originalLatLngs);
|
2013-02-20 06:03:37 +08:00
|
|
|
});
|
|
|
|
|
2015-03-06 16:14:00 +08:00
|
|
|
it("can be set a multi", function () {
|
|
|
|
var latLngs = [
|
|
|
|
[[1, 2], [3, 4], [5, 6]],
|
|
|
|
[[11, 12], [13, 14], [15, 16]]
|
|
|
|
];
|
|
|
|
|
|
|
|
var polyline = new L.Polyline([]);
|
|
|
|
polyline.setLatLngs(latLngs);
|
|
|
|
|
|
|
|
expect(polyline._latlngs[0]).to.eql([L.latLng([1, 2]), L.latLng([3, 4]), L.latLng([5, 6])]);
|
|
|
|
expect(polyline._latlngs[1]).to.eql([L.latLng([11, 12]), L.latLng([13, 14]), L.latLng([15, 16])]);
|
|
|
|
});
|
|
|
|
});
|
2015-04-12 17:25:46 +08:00
|
|
|
|
|
|
|
describe('#getCenter', function () {
|
|
|
|
|
|
|
|
it('should compute center of a big flat line on equator', function () {
|
|
|
|
var polyline = new L.Polyline([[0, 0], [0, 90]]).addTo(map);
|
|
|
|
expect(polyline.getCenter()).to.eql(L.latLng([0, 45]));
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should compute center of a big flat line close to the pole', function () {
|
|
|
|
var polyline = new L.Polyline([[80, 0], [80, 90]]).addTo(map);
|
|
|
|
expect(polyline.getCenter()).to.be.nearLatLng(L.latLng([80, 45]), 1e-2);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should compute center of a big diagonal line', function () {
|
|
|
|
var polyline = new L.Polyline([[0, 0], [80, 80]]).addTo(map);
|
|
|
|
expect(polyline.getCenter()).to.be.nearLatLng(L.latLng([57, 40]), 1);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should compute center of a diagonal line close to the pole', function () {
|
|
|
|
var polyline = new L.Polyline([[70, 70], [84, 84]]).addTo(map);
|
|
|
|
expect(polyline.getCenter()).to.be.nearLatLng(L.latLng([79, 77]), 1);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should compute center of a big multiline', function () {
|
|
|
|
var polyline = new L.Polyline([[10, -80], [0, 0], [0, 10], [10, 90]]).addTo(map);
|
|
|
|
expect(polyline.getCenter()).to.be.nearLatLng(L.latLng([0, 5]), 1);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should compute center of a small flat line', function () {
|
|
|
|
var polyline = new L.Polyline([[0, 0], [0, 0.090]]).addTo(map);
|
|
|
|
map.setZoom(0); // Make the line disappear in screen;
|
|
|
|
expect(polyline.getCenter()).to.be.nearLatLng(L.latLng([0, 0]), 1e-2);
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2015-04-18 23:41:36 +08:00
|
|
|
describe('#_flat', function () {
|
|
|
|
var layer = L.polyline([]);
|
|
|
|
|
|
|
|
it('should return true for an array of LatLngs', function () {
|
2015-05-08 17:52:00 +08:00
|
|
|
expect(L.Polyline._flat([L.latLng([0, 0])])).to.be(true);
|
2015-04-18 23:41:36 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should return true for an array of LatLngs arrays', function () {
|
2015-05-08 17:52:00 +08:00
|
|
|
expect(L.Polyline._flat([[0, 0]])).to.be(true);
|
2015-04-18 23:41:36 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should return true for an empty array', function () {
|
2015-05-08 17:52:00 +08:00
|
|
|
expect(L.Polyline._flat([])).to.be(true);
|
2015-04-18 23:41:36 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should return false for a nested array of LatLngs', function () {
|
2015-05-08 17:52:00 +08:00
|
|
|
expect(L.Polyline._flat([[L.latLng([0, 0])]])).to.be(false);
|
2015-04-18 23:41:36 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should return false for a nested empty array', function () {
|
2015-05-08 17:52:00 +08:00
|
|
|
expect(L.Polyline._flat([[]])).to.be(false);
|
2015-04-18 23:41:36 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2013-02-20 06:03:37 +08:00
|
|
|
});
|