show/hide this revision's text 2 deleted 1 characters in body

I have found the solution.

The problem was that I was creating the map when the DOM was ready with Jquery:

JQ(document).ready(function(){  

$(document).ready(function(){  ... //create map here [WRONG]

All you have to do is to create the map after the onload event:

window.onload = function() { ... // create map here [CORRECT]
show/hide this revision's text 1

I have found the solution.

The problem was that I was creating the map when the DOM was ready with Jquery:

JQ(document).ready(function(){  ... //create map here [WRONG]

All you have to do is to create the map after the onload event:

window.onload = function() { ... // create map here [CORRECT]