703ae02aa8
* WIP ES6 modules & rollup * WIP ES6 modules & rollup 2 * WIP ES6 modules & rollup 3 * WIP ES6 modules Browser * WIP ES6 module fixes * WIP ES6 modules: simpler browser exports * WIP ES6: refactor CRS/Projection modules, CRS obj -> CRS.Base * get rid of unnecessary index.js * WIP ES6 modules, dom events and stuff * Make linter happy, rollup to dist/ * revert to CRS namespace/class for now * WIP rollup: export more stuff * export controls * rollup: export Layer * rollup: export DomEvent * rollup: export more layer types * rollup: export Popup/Tooltip * WIP: ES6-ify marker, icon, domutil, draggable. * ES6-ify gridlayer, tilelayer. * ES6-ify: Tweak imports-exports, code is now runnable!! * ES6-ify: Fix scope in some DomUtils * ES6-ify: Path, fix Popup * ES6-ify: Lint & cleanup * ES6-ify map handlers, more linting * ES6-ify: Icon.Default namespacing * ES6-ify: Renderers, CircleMarker * ES6-ify: Circle, Polyline, LineUtil * ES6-ify: Polygon, Rectangle, LineUtil, PolyUtil, linting * ES6-ify: SVG.VML * ES6-ify: DomEvent.Pointer, DomEvent.DoubleTap * ES6-ify: Linting, make Karma play nice with Rollup * ES6-ify: More work on fixing bits breaking some unit tests. * ES6-ify: rollup the version number, fiddled with build scripts * ES6-ify: Fiddle with test scripts * ES6-ify: cleanup (refs to global L, imports from (DOM)Util), prevent cyclic loop on Map imports * ES6-ify: More cleanup of (DOM)Util/Browser/DomEvent imports * ES6ify: Use rollup's "legacy" option for ES3 (IE8) builds * ES6-ify: Clean up build scripts, fix CONTRIBUTING.md instructions * Typo * ES6-ify: minor fixes and lefovers after rebasing on top of 1.0.2 * ES6-ify: upgrade to rollup 0.38 for proper IE8 builds, fix L.SVG.VML * Make linter happy. * ES6: Fixing typos and sxrew-ups after big rebase * Fix symlink for debugging scripts * ES6: Cleanup old build scripts * ES6-ify: Update build system to include git rev in L.version * ES6-ify: re-enable unit tests replacing L.Path with L.Polyline * Export Path * ES6ify: cleanup old banner file * ES6-ify: whitespace in var declarations * ES6-ify: Export toTransformation as L.transformation * ES6-ify: cleanup L.transform exports * ES6-ify: "import Util" in Transformation and SVG.VML
225 lines
6.2 KiB
JavaScript
225 lines
6.2 KiB
JavaScript
describe('Polyline', function () {
|
|
|
|
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);
|
|
|
|
describe("#initialize", 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);
|
|
|
|
expect(sourceLatLngs).to.eql(originalLatLngs);
|
|
expect(polyline._latlngs).to.not.eql(sourceLatLngs);
|
|
expect(polyline.getLatLngs()).to.eql(polyline._latlngs);
|
|
});
|
|
|
|
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);
|
|
});
|
|
|
|
it("can be added to the map when empty", function () {
|
|
var polyline = new L.Polyline([]).addTo(map);
|
|
expect(map.hasLayer(polyline)).to.be(true);
|
|
});
|
|
|
|
});
|
|
|
|
describe("#isEmpty", function () {
|
|
|
|
it('should return true for a polyline with no latlngs', function () {
|
|
var polyline = new L.Polyline([]);
|
|
expect(polyline.isEmpty()).to.be(true);
|
|
});
|
|
|
|
it('should return false for simple polyline', function () {
|
|
var latLngs = [[1, 2], [3, 4]];
|
|
var polyline = new L.Polyline(latLngs);
|
|
expect(polyline.isEmpty()).to.be(false);
|
|
});
|
|
|
|
it('should return false for multi-polyline', function () {
|
|
var latLngs = [
|
|
[[1, 2], [3, 4]],
|
|
[[11, 12], [13, 14]]
|
|
];
|
|
var polyline = new L.Polyline(latLngs);
|
|
expect(polyline.isEmpty()).to.be(false);
|
|
});
|
|
|
|
});
|
|
|
|
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);
|
|
|
|
expect(sourceLatLngs).to.eql(originalLatLngs);
|
|
});
|
|
|
|
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);
|
|
});
|
|
|
|
it('throws error if not yet added to map', function () {
|
|
expect(function () {
|
|
var polyline = new L.Polyline([[0, 0], [0, 0.090]]);
|
|
var center = polyline.getCenter();
|
|
}).to.throwException('Must add layer to map before using getCenter()');
|
|
});
|
|
|
|
});
|
|
|
|
|
|
describe("#_defaultShape", function () {
|
|
|
|
it("should return latlngs when flat", function () {
|
|
var latLngs = [L.latLng([1, 2]), L.latLng([3, 4])];
|
|
|
|
var polyline = new L.Polyline(latLngs);
|
|
|
|
expect(polyline._defaultShape()).to.eql(latLngs);
|
|
});
|
|
|
|
it("should return first latlngs on a multi", function () {
|
|
var latLngs = [
|
|
[L.latLng([1, 2]), L.latLng([3, 4])],
|
|
[L.latLng([11, 12]), L.latLng([13, 14])]
|
|
];
|
|
|
|
var polyline = new L.Polyline(latLngs);
|
|
|
|
expect(polyline._defaultShape()).to.eql(latLngs[0]);
|
|
});
|
|
|
|
});
|
|
|
|
describe("#addLatLng", function () {
|
|
|
|
it("should add latlng to latlngs", function () {
|
|
var latLngs = [
|
|
[1, 2],
|
|
[3, 4]
|
|
];
|
|
|
|
var polyline = new L.Polyline(latLngs);
|
|
|
|
polyline.addLatLng([5, 6]);
|
|
|
|
expect(polyline._latlngs).to.eql([L.latLng([1, 2]), L.latLng([3, 4]), L.latLng([5, 6])]);
|
|
});
|
|
|
|
it("should add latlng to first latlngs on a multi", function () {
|
|
var latLngs = [
|
|
[[1, 2], [3, 4]],
|
|
[[11, 12], [13, 14]]
|
|
];
|
|
|
|
var polyline = new L.Polyline(latLngs);
|
|
|
|
polyline.addLatLng([5, 6]);
|
|
|
|
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])]);
|
|
});
|
|
|
|
it("should add latlng to latlngs by reference", function () {
|
|
var latLngs = [
|
|
[[11, 12], [13, 14]],
|
|
[[1, 2], [3, 4]]
|
|
];
|
|
|
|
var polyline = new L.Polyline(latLngs);
|
|
|
|
polyline.addLatLng([5, 6], polyline._latlngs[1]);
|
|
|
|
expect(polyline._latlngs[1]).to.eql([L.latLng([1, 2]), L.latLng([3, 4]), L.latLng([5, 6])]);
|
|
expect(polyline._latlngs[0]).to.eql([L.latLng([11, 12]), L.latLng([13, 14])]);
|
|
});
|
|
|
|
it("should add latlng on empty polyline", function () {
|
|
var polyline = new L.Polyline([]);
|
|
|
|
polyline.addLatLng([1, 2]);
|
|
|
|
expect(polyline._latlngs).to.eql([L.latLng([1, 2])]);
|
|
});
|
|
|
|
});
|
|
|
|
});
|