-<script type="text/javascript">
-$(document).ready(function () {
- var updateMapKey = function () {
- $("#sidebar_content").load("<%= url_for :action => :key %>", {
- layer: map.baseLayer.keyid,
- zoom: map.getZoom()
- });
- }
-
- $("#open_map_key").click(function () {
- updateMapKey();
-
- openSidebar({ title: "<%= t('site.key.map_key') %>" });
-
- $("#sidebar").one("closed", function () {
- map.events.unregister("zoomend", map, updateMapKey);
- map.events.unregister("changelayer", map, updateMapKey);
- });
-
- map.events.register("zoomend", map, updateMapKey);
- map.events.register("changelayer", map, updateMapKey);
- });
-});
-</script>
-