-
-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1064 from jfirebaugh/baselayerchange
need a baselayerchange event
- Loading branch information
Showing
4 changed files
with
142 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
// https://github.com/tmcw/happen | ||
|
||
!(function(context) { | ||
var h = {}; | ||
|
||
// Make inheritance bearable: clone one level of properties | ||
function extend(child, parent) { | ||
for (var property in parent) { | ||
if (typeof child[property] == 'undefined') { | ||
child[property] = parent[property]; | ||
} | ||
} | ||
return child; | ||
} | ||
|
||
h.once = function(x, o) { | ||
var evt; | ||
|
||
if (o.type.slice(0, 3) === 'key') { | ||
if (typeof Event === 'function') { | ||
evt = new Event(o.type); | ||
evt.keyCode = o.keyCode || 0; | ||
evt.charCode = o.charCode || 0; | ||
evt.shift = o.shift || false; | ||
evt.meta = o.meta || false; | ||
evt.ctrl = o.ctrl || false; | ||
evt.alt = o.alt || false; | ||
} else { | ||
evt = document.createEvent('KeyboardEvent'); | ||
// https://developer.mozilla.org/en/DOM/event.initKeyEvent | ||
// https://developer.mozilla.org/en/DOM/KeyboardEvent | ||
evt[(evt.initKeyEvent) ? 'initKeyEvent' | ||
: 'initKeyboardEvent']( | ||
o.type, // in DOMString typeArg, | ||
true, // in boolean canBubbleArg, | ||
true, // in boolean cancelableArg, | ||
null, // in nsIDOMAbstractView viewArg, Specifies UIEvent.view. This value may be null. | ||
o.ctrl || false, // in boolean ctrlKeyArg, | ||
o.alt || false, // in boolean altKeyArg, | ||
o.shift || false, // in boolean shiftKeyArg, | ||
o.meta || false, // in boolean metaKeyArg, | ||
o.keyCode || 0, // in unsigned long keyCodeArg, | ||
o.charCode || 0 // in unsigned long charCodeArg); | ||
); | ||
} | ||
} else { | ||
evt = document.createEvent('MouseEvents'); | ||
// https://developer.mozilla.org/en/DOM/event.initMouseEvent | ||
evt.initMouseEvent(o.type, | ||
true, // canBubble | ||
true, // cancelable | ||
window, // 'AbstractView' | ||
o.clicks || 0, // click count | ||
o.screenX || 0, // screenX | ||
o.screenY || 0, // screenY | ||
o.clientX || 0, // clientX | ||
o.clientY || 0, // clientY | ||
o.ctrl || 0, // ctrl | ||
o.alt || false, // alt | ||
o.shift || false, // shift | ||
o.meta || false, // meta | ||
o.button || false, // mouse button | ||
null // relatedTarget | ||
); | ||
} | ||
|
||
x.dispatchEvent(evt); | ||
}; | ||
|
||
var shortcuts = ['click', 'mousedown', 'mouseup', 'mousemove', 'keydown', 'keyup', 'keypress'], | ||
s, i = 0; | ||
|
||
while (s = shortcuts[i++]) { | ||
h[s] = (function(s) { | ||
return function(x, o) { | ||
h.once(x, extend(o || {}, { type: s })); | ||
}; | ||
})(s); | ||
} | ||
|
||
h.dblclick = function(x, o) { | ||
h.once(x, extend(o || {}, { | ||
type: 'dblclick', | ||
clicks: 2 | ||
})); | ||
}; | ||
|
||
this.happen = h; | ||
|
||
if (typeof module !== 'undefined') { | ||
module.exports = this.happen; | ||
} | ||
})(this); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
describe("Control.Layers", function () { | ||
var map; | ||
|
||
beforeEach(function () { | ||
map = L.map(document.createElement('div')); | ||
}); | ||
|
||
describe("baselayerchange event", function () { | ||
it("is fired on input that changes the base layer", function () { | ||
var baseLayers = {"Layer 1": L.tileLayer(), "Layer 2": L.tileLayer()}, | ||
layers = L.control.layers(baseLayers).addTo(map), | ||
spy = jasmine.createSpy(); | ||
|
||
map.on('baselayerchange', spy); | ||
happen.click(layers._baseLayersList.getElementsByTagName("input")[0]); | ||
|
||
expect(spy).toHaveBeenCalled(); | ||
expect(spy.mostRecentCall.args[0].layer).toBe(baseLayers["Layer 1"]); | ||
}); | ||
|
||
it("is not fired on input that doesn't change the base layer", function () { | ||
var overlays = {"Marker 1": L.marker([0, 0]), "Marker 2": L.marker([0, 0])}, | ||
layers = L.control.layers({}, overlays).addTo(map), | ||
spy = jasmine.createSpy(); | ||
|
||
map.on('baselayerchange', spy); | ||
happen.click(layers._overlaysList.getElementsByTagName("input")[0]); | ||
|
||
expect(spy).not.toHaveBeenCalled(); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters