Javascript "unspecified error" in Open Layers - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T16:52:02Zhttp://stackoverflow.com/feeds/question/1081812http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081812/javascript-unspecified-error-in-open-layers1Javascript "unspecified error" in Open LayersAlin2009-07-04T08:44:27Z2009-07-23T16:38:08Z
<p>I am getting this error <img src="http://img239.imageshack.us/img239/6936/jserror.png" alt="alt text" /> when the map loads.</p>
<p>The error is in the original, unmodified OpenLayers.js file on this line:</p>
<p><code>return!!(document.namespaces);</code></p>
<p>I have tried rewriting it to:</p>
<p><code>return (typeof(document.namespaces) != 'undefined');</code></p>
<p>and it worked but then I get same "unspecified" errors on further referrals to document.namespaces:</p>
<p><code>if(!document.namespaces.olv){document.namespaces.add("olv",this.xmlns); ... </code></p>
<p>I tried rewriting this to:</p>
<p><code>if(typeof(document.namespaces.olv) == 'undefined') { ...</code></p>
<p>but I get the same "unspecified error".</p>
<p>I only get this error on Internet Explorer (I tested on 7) and not in Firefox.</p>
<p>Any clues?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1081812/javascript-unspecified-error-in-open-layers/1085837#10858372Answer by Alin for Javascript "unspecified error" in Open LayersAlin2009-07-06T07:42:15Z2009-07-06T07:47:51Z<p>I have found the solution.</p>
<p>The problem was that I was creating the map when the DOM was ready with Jquery:</p>
<pre><code>$(document).ready(function(){ ... //create map here [WRONG]
</code></pre>
<p>All you have to do is to create the map after the onload event:</p>
<pre><code>window.onload = function() { ... // create map here [CORRECT]
</code></pre>
http://stackoverflow.com/questions/1081812/javascript-unspecified-error-in-open-layers/1172994#11729940Answer by milovanderlinden for Javascript "unspecified error" in Open Layersmilovanderlinden2009-07-23T16:38:08Z2009-07-23T16:38:08Z<p>The problem with Internet Explorer is that when the page hits the document ready or the window onload, that M$ browser cannot determine the dimensions of the map canvas yet. If you want to work around this, you might also consider setting your map div dimensions:</p>
<pre><code><div id="map" style="width:250px;height:250px"></div>
</code></pre>