2012-10-13 03:49:12 +08:00
|
|
|
describe("Control.Scale", function () {
|
|
|
|
it("can be added to an unloaded map", function () {
|
|
|
|
var map = L.map(document.createElement('div'));
|
|
|
|
new L.Control.Scale().addTo(map);
|
2013-02-20 00:18:15 +08:00
|
|
|
});
|
2012-10-13 03:49:12 +08:00
|
|
|
});
|