消息:参数无效。谷歌地图

时间:2011-06-10 19:15:37

标签: jquery google-maps google-maps-api-3

尝试调试此Google地图错误。

适用于IE以外的所有测试浏览器。有时标记显示,有时它们不会。

http://www.ecompanies.nl/pilot/warenhuis/breda.html

网页错误详情 消息:参数无效。 行:27 查尔:56 代码:0 URI:http://maps.gstatic.com/intl/nl_nl/mapfiles/api-3/5/6a/main.js

1 个答案:

答案 0 :(得分:1)

我遇到了这个问题,对我来说,结果是与document.ready()上的jquery ajax调用冲突。值得注意的细节:

  • 包括上面提到的这个gstatic文件
  • 包括jquery 1.6.4,在noConflict()模式下
  • 包括jquery UI 1.8.14
  • 正在执行ajax调用以在document.ready()
  • 上填充div(购物车小部件,多少项,多少等)

要解决,我最终得到了类似的东西:

// wrap ajax call in a function, then figure out if we execute it now, or delay.
var f = function(){
  $.getJSON('/ajax_handler/', function(data){/* do stuff */});
}
// check if google code is present (not sure how robust this is)
if(window['google']){ // We've got some Google, delay ajax call by 5s.
  setTimeout(f, 5000); // this was the lowest i could safely go, unfortunately.
} else { // No Google, do the ajax call immediately
  f();
}