-L.OSM.Layers = L.Control.extend({
- onAdd: function (map) {
- this._map = map;
- this._initLayout();
- return this.$container[0];
- },
-
- _initLayout: function () {
- var map = this._map,
- layers = this.options.layers;
-
- this.$container = $('<div>')
+L.OSM.layers = function(options) {
+ var control = L.control(options);
+
+ control.onAdd = function (map) {
+ var layers = options.layers;
+
+ var $container = $('<div>')