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