I created an overviewlayer using the following guide:http://help.arcgis.com/en/webapi/javascript/arcgis/help/jsapi_start.htm#jsapi/overviewmap.htmEverything works fine, but the maximize button will not show up. Do I need to add functionality to handle the event or does it automatically handle it?Here is my code:overviewMap = new esri.dijit.OverviewMap({ map: _map, expandFactor: 1, maximizeButton:true}, dojo.byId("overviewDiv"));
overviewMap.startup();<div id="ovWin" class="shadow" style="position:absolute; right:3px; bottom:3px; z-Index:998; width:150px;height:150px; ">
<div id="overviewDiv" style="width:100%;height:100%;"></div>
</div>