Leaflet/spec/suites/layer/vector/CircleSpec.js
2014-01-03 00:37:34 +02:00

19 lines
487 B
JavaScript

describe('Circle', function () {
describe('#getBounds', function () {
var map, circle;
beforeEach(function () {
map = L.map(document.createElement('div')).setView([0, 0], 4);
circle = L.circle([50, 30], 200).addTo(map);
});
it('returns bounds', function () {
var bounds = circle.getBounds();
expect(bounds.getSouthWest()).nearLatLng(new L.LatLng(49.95122, 29.88281));
expect(bounds.getNorthEast()).nearLatLng(new L.LatLng(50.06419, 30.05859));
});
});
});