This commit is contained in:
parent
78be0ad0ec
commit
8cc7404f53
@ -109,7 +109,7 @@ describe("Marker", function () {
|
||||
marker.setLatLng(afterLatLng);
|
||||
|
||||
expect(eventArgs).to.not.be(null);
|
||||
expect(eventArgs.oldLatlng).to.be(beforeLatLng);
|
||||
expect(eventArgs.oldLatLng).to.be(beforeLatLng);
|
||||
expect(eventArgs.latlng).to.be(afterLatLng);
|
||||
expect(marker.getLatLng()).to.be(afterLatLng);
|
||||
});
|
||||
|
@ -55,10 +55,10 @@ L.Marker = L.Layer.extend({
|
||||
},
|
||||
|
||||
setLatLng: function (latlng) {
|
||||
var oldLatlng = this._latlng;
|
||||
var oldLatLng = this._latlng;
|
||||
this._latlng = L.latLng(latlng);
|
||||
this.update();
|
||||
return this.fire('move', { oldLatlng: oldLatlng, latlng: this._latlng });
|
||||
return this.fire('move', { oldLatLng: oldLatLng, latlng: this._latlng });
|
||||
},
|
||||
|
||||
setZIndexOffset: function (offset) {
|
||||
|
Loading…
Reference in New Issue
Block a user