<div>Dear Bojan,</div>
<div> </div>
<div>thank you for sharing your experience. I have successfully created the overview map based on the code shared by other OpenLayers users. As for the pixel bounds with map bounds conversion which you mentioned in (1) which can display lat / long coordinates, can you share your coding so that I can take a look?</div>

<div> </div>
<div>Thank you and best regards.</div>
<div> </div>
<div>Albert Ang<br><br></div>
<div class="gmail_quote">On Mon, Apr 25, 2011 at 2:29 AM, Бојан <span dir="ltr">&lt;<a href="mailto:crni.bombarder.17.45@gmail.com">crni.bombarder.17.45@gmail.com</a>&gt;</span> wrote:<br>
<blockquote style="BORDER-LEFT: #ccc 1px solid; MARGIN: 0px 0px 0px 0.8ex; PADDING-LEFT: 1ex" class="gmail_quote">
<p>I don`t have direct answer for your problem,but I can share my expirience on this topic.</p>
<p>1)I tried various combinations for this,but i haven`t made it posible.So I solved this problem with simple bypass.I created function which combines pixels bounds with my map bounds and after conversion displays lat/lon coordinates,instead of pixel ones.<br>
2)For this I also created a bypass.Basicly,this code worked for me (already posted it <a href="http://osgeo-org.1803224.n2.nabble.com/zoomify-layer-WITH-overview-map-td5534360.html#a5850568" target="_blank">here</a>):<br>
Used variables: </p>
<p>                var width = ...;         //Your Zoomify width <br>                var height = ...;       //Your Zoomify height; <br>                var ll = ...;              //Optional number to reduce your original pixel to fit Overview map container (I used Math.floor(width/150), since my container is 150 x 110) <br>
                var a = width/ll;       <br>                var b = height/ll;       </p>
<p> </p>
<p>New layer and new control: </p>
<p> </p>
<p>           var NameOfOverviewMap = new OpenLayers.Layer.Image( <br>                &#39;NameOfOverviewMap&#39;, <br>                OverviewMapUrl, <br>                new OpenLayers.Bounds(0, 0, width, height), <br>                new OpenLayers.Size(a, b), <br>
                { numZoomLevels: 1, <br>          maxExtent: new OpenLayers.Bounds(..., ..., ..., ...)     <br>                } <br>               ); </p>
<p>            var NameOfOverviewMapControl = new OpenLayers.Control.OverviewMap({ <br>                 size: new OpenLayers.Size(150, 110),    //This is optional,you may use default values <br>                layers: [NameOfOverviewMap] <br>
        }); </p>
<p>At last,adding it to the map: </p>
<p>                        map.addControl(NameOfOverviewMapControl); </p>
<p><br>3)Basicly,function used in 1) can be used for transforming pixels into lat/lon and vice versa.</p>
<p>Maybe it is posible to do these things automaticly,but I haven`t found working code and I solved it this way.</p>
<div>Bojan</div>
<div>!!!</div></blockquote></div><br>