<div dir="ltr">Every time I try to use this OpenLayers.Control.OverviewMap, it returns me this error... <br>It also happens with OpenLayers.Control.ScaleLine!<br><br>Here is the code I just copied from OpenLayers examples and pasted into my page!<br>
<br>// create an overview map control with the default options<br> var overview = new OpenLayers.Control.OverviewMap();<br> map.addControl(overview);<br> <br> map.setCenter(new OpenLayers.LonLat(0, 0), 2);<br>
<br> // expand the overview map control<br> overview.maximizeControl();<br><br><br>And if I set new OpenLayers.Control.ScaleLine while I'm defining map options, it doesn't work too...<br><br>
Like:<br><br>var bounds = new OpenLayers.Bounds(<br> 186432.76796875, 7476919.875,<br> 272697.46640625, 7569333.625<br> );<br> var options = {<br> controls: [<br>
// setup controls and initial zooms<br> new OpenLayers.Control.PanZoomBar(),<br> new OpenLayers.Control.Navigation(),<br> new OpenLayers.Control.Scale($('scale')),<br>
new OpenLayers.Control.MousePosition({element: $('location')}),<br> new OpenLayers.Control.LayerSwitcher(),<br> //new OpenLayers.Control.ScaleLine()<br> <br>
],<br> maxExtent: bounds,<br> maxResolution: 360.9912109375,<br> projection: "EPSG:4326",<br> units: 'm'<br> };<br> map = new OpenLayers.Map('map', options);<br>
<br>Does anybody knows what maybe the problem??<br><br>Thanks for now!<br><br>Rodrigo<br clear="all"><br>======================================<br>Rodrigo C. Antonialli<br>Rio Claro - SP - Brasil<br>LinkedIn: <a href="http://www.linkedin.com/in/rcaprofile">http://www.linkedin.com/in/rcaprofile</a><br>
Contato: (19) 9757-0370<br> <a href="mailto:rca.cirdan@gmail.com">rca.cirdan@gmail.com</a><br> <a href="mailto:rcantonialli@gmail.com">rcantonialli@gmail.com</a><br> Skype: rc_antonialli<br>
<br><br>
</div>