Leaflet/spec/suites/layer/vector/PolylineSpec.js

137 lines
4.1 KiB
JavaScript
Raw Normal View History

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
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);
expect(polyline.getLatLngs()).to.eql(polyline._latlngs);
2013-02-20 06:03:37 +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
});
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])]);
});
});
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);
});
});
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);
});
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);
});
it('should return true for an empty array', function () {
2015-05-08 17:52:00 +08:00
expect(L.Polyline._flat([])).to.be(true);
});
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);
});
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);
});
});
2013-02-20 06:03:37 +08:00
});