尝试调试此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
答案 0 :(得分:1)
我遇到了这个问题,对我来说,结果是与document.ready()上的jquery ajax调用冲突。值得注意的细节:
要解决,我最终得到了类似的东西:
// 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();
}