Add back basic zoom control

This commit is contained in:
John Firebaugh 2013-06-10 11:15:58 -07:00
parent ccbf99cf17
commit 15d148dbd4
4 changed files with 12 additions and 8 deletions

View file

@ -23,14 +23,16 @@ OSM.MapUI = L.Control.extend({
e.stopPropagation();
e.preventDefault();
var controlContainer = $('.leaflet-control-container .leaflet-top.leaflet-right');
if ($(this._uiPane).is(':visible')) {
$(this._uiPane).hide();
$(this._container).css({paddingRight: '0'})
controlContainer.css({paddingRight: '0'})
} else {
$(this._uiPane)
.show()
.html(JST["templates/map/layers"]());
$(this._container).css({paddingRight: '200px'})
controlContainer.css({paddingRight: '200px'})
}
}
});