var $ui = $('<div>')
.attr('class', 'layers-ui');
- $('<section>')
- .appendTo($ui)
- .append(
- $('<a>')
- .html('»')
- .attr('class', 'close-button')
- .attr('href', '#')
- .bind('click', toggle))
- .append(
- $('<h2>')
+ $('<header>')
+ .attr('class', 'sidebar_heading')
+ .appendTo($ui)
+ .append(
+ $('<a>')
+ .text(I18n.t('javascripts.close'))
+ .attr('class', 'sidebar_close')
+ .attr('href', '#')
+ .bind('click', toggle))
+ .append(
+ $('<h4>')
.text(I18n.t('javascripts.map.layers.header')));
var baseSection = $('<section>')
});
var label = $('<label>')
- .text(layer.options.name)
.appendTo(item);
+ var input = $('<input>')
+ .attr('type', 'radio')
+ .prop('checked', map.hasLayer(layer))
+ .appendTo(label);
+
+ label.append(layer.options.name);
+
item.on('click', function() {
layers.forEach(function(other) {
if (other === layer) {
map.on('layeradd layerremove', function() {
item.toggleClass('active', map.hasLayer(layer));
+ input.prop('checked', map.hasLayer(layer));
});
});