5603a87c70
* Add some tests for #5293 * Fix enabling marker dragging while markers aren't on the map by removing the dragging object when not on the map. This is a change of behavior (.dragging is only defined when a marker is on the map). * Docs for dragging change
319 lines
8.7 KiB
JavaScript
319 lines
8.7 KiB
JavaScript
describe("Marker", function () {
|
|
var map,
|
|
spy,
|
|
div,
|
|
icon1,
|
|
icon2;
|
|
|
|
beforeEach(function () {
|
|
div = document.createElement('div');
|
|
div.style.height = '100px';
|
|
document.body.appendChild(div);
|
|
|
|
map = L.map(div).setView([0, 0], 0);
|
|
icon1 = new L.Icon.Default();
|
|
icon2 = new L.Icon.Default({
|
|
iconUrl: icon1.options.iconUrl + '?2',
|
|
shadowUrl: icon1.options.shadowUrl + '?2'
|
|
});
|
|
});
|
|
|
|
afterEach(function () {
|
|
document.body.removeChild(div);
|
|
});
|
|
|
|
describe("#setIcon", function () {
|
|
|
|
it("set the correct x and y size attributes", function () {
|
|
var expectedX = 96;
|
|
var expectedY = 100;
|
|
var sizedIcon = new L.Icon.Default({
|
|
iconUrl: icon1.options.iconUrl + '?3',
|
|
iconSize: [expectedX, expectedY]
|
|
});
|
|
|
|
var marker = new L.Marker([0, 0], {icon: sizedIcon});
|
|
map.addLayer(marker);
|
|
|
|
var icon = marker._icon;
|
|
|
|
expect(icon.style.width).to.be(expectedX + 'px');
|
|
expect(icon.style.height).to.be(expectedY + 'px');
|
|
});
|
|
|
|
it("set the correct x and y size attributes passing only one value", function () {
|
|
var expectedXY = 96;
|
|
var sizedIcon = new L.Icon.Default({
|
|
iconUrl: icon1.options.iconUrl + '?3',
|
|
iconSize: expectedXY
|
|
});
|
|
|
|
var marker = new L.Marker([0, 0], {icon: sizedIcon});
|
|
map.addLayer(marker);
|
|
|
|
var icon = marker._icon;
|
|
|
|
expect(icon.style.width).to.be(expectedXY + 'px');
|
|
expect(icon.style.height).to.be(expectedXY + 'px');
|
|
});
|
|
|
|
it("set the correct x and y size attributes passing a L.Point instance", function () {
|
|
var expectedXY = 96;
|
|
var sizedIcon = new L.Icon.Default({
|
|
iconUrl: icon1.options.iconUrl + '?3',
|
|
iconSize: L.point(expectedXY, expectedXY)
|
|
});
|
|
|
|
var marker = new L.Marker([0, 0], {icon: sizedIcon});
|
|
map.addLayer(marker);
|
|
|
|
var icon = marker._icon;
|
|
|
|
expect(icon.style.width).to.be(expectedXY + 'px');
|
|
expect(icon.style.height).to.be(expectedXY + 'px');
|
|
});
|
|
|
|
it("changes the icon to another image", function () {
|
|
var marker = new L.Marker([0, 0], {icon: icon1});
|
|
map.addLayer(marker);
|
|
|
|
var beforeIcon = marker._icon;
|
|
marker.setIcon(icon2);
|
|
var afterIcon = marker._icon;
|
|
|
|
expect(beforeIcon).to.be(afterIcon);
|
|
expect(afterIcon.src).to.contain(icon2._getIconUrl('icon'));
|
|
});
|
|
|
|
it("preserves draggability", function () {
|
|
var marker = new L.Marker([0, 0], {icon: icon1});
|
|
map.addLayer(marker);
|
|
|
|
marker.dragging.disable();
|
|
marker.setIcon(icon2);
|
|
|
|
expect(marker.dragging.enabled()).to.be(false);
|
|
|
|
marker.dragging.enable();
|
|
|
|
marker.setIcon(icon1);
|
|
|
|
expect(marker.dragging.enabled()).to.be(true);
|
|
|
|
map.removeLayer(marker);
|
|
map.addLayer(marker);
|
|
|
|
expect(marker.dragging.enabled()).to.be(true);
|
|
|
|
map.removeLayer(marker);
|
|
// Dragging is still enabled, we should be able to disable it,
|
|
// even if marker is off the map.
|
|
expect(marker.dragging).to.be(undefined);
|
|
marker.options.draggable = false;
|
|
map.addLayer(marker);
|
|
|
|
map.removeLayer(marker);
|
|
|
|
// We should also be able to enable dragging while off the map
|
|
expect(marker.dragging).to.be(undefined);
|
|
marker.options.draggable = true;
|
|
|
|
map.addLayer(marker);
|
|
expect(marker.dragging.enabled()).to.be(true);
|
|
});
|
|
|
|
it("changes the icon to another DivIcon", function () {
|
|
var marker = new L.Marker([0, 0], {icon: new L.DivIcon({html: 'Inner1Text'})});
|
|
map.addLayer(marker);
|
|
|
|
var beforeIcon = marker._icon;
|
|
marker.setIcon(new L.DivIcon({html: 'Inner2Text'}));
|
|
var afterIcon = marker._icon;
|
|
|
|
expect(beforeIcon).to.be(afterIcon);
|
|
expect(afterIcon.innerHTML).to.contain('Inner2Text');
|
|
});
|
|
|
|
it("removes text when changing to a blank DivIcon", function () {
|
|
var marker = new L.Marker([0, 0], {icon: new L.DivIcon({html: 'Inner1Text'})});
|
|
map.addLayer(marker);
|
|
|
|
marker.setIcon(new L.DivIcon());
|
|
var afterIcon = marker._icon;
|
|
|
|
expect(marker._icon.innerHTML).to.not.contain('Inner1Text');
|
|
});
|
|
|
|
it("changes a DivIcon to an image", function () {
|
|
var marker = new L.Marker([0, 0], {icon: new L.DivIcon({html: 'Inner1Text'})});
|
|
map.addLayer(marker);
|
|
var oldIcon = marker._icon;
|
|
|
|
marker.setIcon(icon1);
|
|
|
|
expect(oldIcon).to.not.be(marker._icon);
|
|
expect(oldIcon.parentNode).to.be(null);
|
|
|
|
if (L.Browser.retina) {
|
|
expect(marker._icon.src).to.contain('marker-icon-2x.png');
|
|
} else {
|
|
expect(marker._icon.src).to.contain('marker-icon.png');
|
|
}
|
|
expect(marker._icon.parentNode).to.be(map._panes.markerPane);
|
|
});
|
|
|
|
it("changes an image to a DivIcon", function () {
|
|
var marker = new L.Marker([0, 0], {icon: icon1});
|
|
map.addLayer(marker);
|
|
var oldIcon = marker._icon;
|
|
|
|
marker.setIcon(new L.DivIcon({html: 'Inner1Text'}));
|
|
|
|
expect(oldIcon).to.not.be(marker._icon);
|
|
expect(oldIcon.parentNode).to.be(null);
|
|
|
|
expect(marker._icon.innerHTML).to.contain('Inner1Text');
|
|
expect(marker._icon.parentNode).to.be(map._panes.markerPane);
|
|
});
|
|
|
|
it("reuses the icon/shadow when changing icon", function () {
|
|
var marker = new L.Marker([0, 0], {icon: icon1});
|
|
map.addLayer(marker);
|
|
var oldIcon = marker._icon;
|
|
var oldShadow = marker._shadow;
|
|
|
|
marker.setIcon(icon2);
|
|
|
|
expect(oldIcon).to.be(marker._icon);
|
|
expect(oldShadow).to.be(marker._shadow);
|
|
|
|
expect(marker._icon.parentNode).to.be(map._panes.markerPane);
|
|
expect(marker._shadow.parentNode).to.be(map._panes.shadowPane);
|
|
});
|
|
});
|
|
|
|
describe("#setLatLng", function () {
|
|
it("fires a move event", function () {
|
|
|
|
var marker = new L.Marker([0, 0], {icon: icon1});
|
|
map.addLayer(marker);
|
|
|
|
var beforeLatLng = marker._latlng;
|
|
var afterLatLng = new L.LatLng(1, 2);
|
|
|
|
var eventArgs = null;
|
|
marker.on('move', function (e) {
|
|
eventArgs = e;
|
|
});
|
|
|
|
marker.setLatLng(afterLatLng);
|
|
|
|
expect(eventArgs).to.not.be(null);
|
|
expect(eventArgs.oldLatLng).to.be(beforeLatLng);
|
|
expect(eventArgs.latlng).to.be(afterLatLng);
|
|
expect(marker.getLatLng()).to.be(afterLatLng);
|
|
});
|
|
});
|
|
|
|
describe('events', function () {
|
|
it('fires click event when clicked', function () {
|
|
var spy = sinon.spy();
|
|
|
|
var marker = L.marker([0, 0]).addTo(map);
|
|
|
|
marker.on('click', spy);
|
|
happen.click(marker._icon);
|
|
|
|
expect(spy.called).to.be.ok();
|
|
});
|
|
|
|
it('fires click event when clicked with DivIcon', function () {
|
|
var spy = sinon.spy();
|
|
|
|
var marker = L.marker([0, 0], {icon: new L.DivIcon()}).addTo(map);
|
|
|
|
marker.on('click', spy);
|
|
happen.click(marker._icon);
|
|
|
|
expect(spy.called).to.be.ok();
|
|
});
|
|
|
|
it('fires click event when clicked on DivIcon child element', function () {
|
|
var spy = sinon.spy();
|
|
|
|
var marker = L.marker([0, 0], {icon: new L.DivIcon({html: '<img src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=" />'})}).addTo(map);
|
|
|
|
marker.on('click', spy);
|
|
|
|
happen.click(marker._icon);
|
|
expect(spy.called).to.be.ok();
|
|
|
|
happen.click(marker._icon.querySelector('img'));
|
|
expect(spy.calledTwice).to.be.ok();
|
|
});
|
|
|
|
it('fires click event when clicked on DivIcon child element set using setIcon', function () {
|
|
var spy = sinon.spy();
|
|
|
|
var marker = L.marker([0, 0]).addTo(map);
|
|
marker.setIcon(new L.DivIcon({html: '<img src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=" />'}));
|
|
|
|
marker.on('click', spy);
|
|
|
|
happen.click(marker._icon);
|
|
expect(spy.called).to.be.ok();
|
|
|
|
happen.click(marker._icon.querySelector('img'));
|
|
expect(spy.calledTwice).to.be.ok();
|
|
});
|
|
|
|
it("do not propagate click event", function () {
|
|
var spy = sinon.spy();
|
|
var spy2 = sinon.spy();
|
|
var mapSpy = sinon.spy();
|
|
var marker = new L.Marker(new L.LatLng(55.8, 37.6));
|
|
map.addLayer(marker);
|
|
marker.on('click', spy);
|
|
marker.on('click', spy2);
|
|
map.on('click', mapSpy);
|
|
happen.click(marker._icon);
|
|
expect(spy.called).to.be.ok();
|
|
expect(spy2.called).to.be.ok();
|
|
expect(mapSpy.called).not.to.be.ok();
|
|
});
|
|
|
|
it("do not propagate dblclick event", function () {
|
|
var spy = sinon.spy();
|
|
var spy2 = sinon.spy();
|
|
var mapSpy = sinon.spy();
|
|
var marker = new L.Marker(new L.LatLng(55.8, 37.6));
|
|
map.addLayer(marker);
|
|
marker.on('dblclick', spy);
|
|
marker.on('dblclick', spy2);
|
|
map.on('dblclick', mapSpy);
|
|
happen.dblclick(marker._icon);
|
|
expect(spy.called).to.be.ok();
|
|
expect(spy2.called).to.be.ok();
|
|
expect(mapSpy.called).not.to.be.ok();
|
|
});
|
|
|
|
it("do not catch event if it does not listen to it", function (done) {
|
|
var marker = new L.Marker([55, 37]);
|
|
map.addLayer(marker);
|
|
marker.once('mousemove', function (e) {
|
|
// It should be the marker coordinates
|
|
expect(e.latlng.equals(marker.getLatLng())).to.be.equal(true);
|
|
});
|
|
happen.mousemove(marker._icon);
|
|
|
|
map.once('mousemove', function (e) {
|
|
// It should be the mouse coordinates, not the marker ones
|
|
expect(e.latlng.equals(marker.getLatLng())).to.be.equal(false);
|
|
done();
|
|
});
|
|
happen.mousemove(marker._icon);
|
|
});
|
|
|
|
});
|
|
});
|