var $container = $('<div>')
.attr('class', 'control-key');
- $('<a>')
+ var button = $('<a>')
.attr('class', 'control-button')
.attr('href', '#')
.attr('title', I18n.t('javascripts.key.tooltip'))
.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 toggle(e) {
e.stopPropagation();
e.preventDefault();
- options.sidebar.togglePane($ui);
+ options.sidebar.togglePane($ui, button);
}
function update() {
- var layer = getMapBaseLayerId(map),
+ var layer = map.getMapBaseLayerId(),
zoom = map.getZoom();
$('.mapkey-table-entry').each(function () {