Javascript "unspecified error" in Open Layers - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T16:52:02Z http://stackoverflow.com/feeds/question/1081812 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081812/javascript-unspecified-error-in-open-layers 1 Javascript "unspecified error" in Open Layers Alin 2009-07-04T08:44:27Z 2009-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#1085837 2 Answer by Alin for Javascript "unspecified error" in Open Layers Alin 2009-07-06T07:42:15Z 2009-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#1172994 0 Answer by milovanderlinden for Javascript "unspecified error" in Open Layers milovanderlinden 2009-07-23T16:38:08Z 2009-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>&lt;div id="map" style="width:250px;height:250px"&gt;&lt;/div&gt; </code></pre>