.appendTo($container);
var $ui = $('<div>')
- .attr('class', 'layers-ui');
+ .attr('class', 'key-ui');
- $('<section>')
+ $('<div>')
+ .attr('class', 'sidebar_heading')
.appendTo($ui)
.append(
- $('<h2>')
- .text(I18n.t('javascripts.key.title')));
+ $('<a>')
+ .text(I18n.t('javascripts.close'))
+ .attr('class', 'sidebar_close')
+ .attr('href', '#')
+ .bind('click', toggle))
+ .append(
+ $('<h4>')
+ .text(I18n.t('javascripts.key.title')));
- var $section = $('<section>')
+ var $section = $('<div>')
+ .attr('class', 'section')
.appendTo($ui);
options.sidebar.addPane($ui);
}
function update() {
- var layer = getMapBaseLayerId(map),
+ var layer = map.getMapBaseLayerId(),
zoom = map.getZoom();
$('.mapkey-table-entry').each(function () {