有人可以帮我正确地将 Google 地图集成到 jQuery 选项卡中。
我需要整合 2 张地图。
一张地图检索地图,另一张地图检索路线规划器。
我的代码有问题,我在 Firebug 中收到此错误:
TypeError: a is null
[Break On This Error]
... new S((this.H+this.J)/2,(this.G+this.L)/2)};var zh=yh(-ca,-ca,ca,ca),Ah=yh(0,0,...
有人可以帮我正确地将 Google 地图集成到 jQuery 选项卡中。
我需要整合 2 张地图。
一张地图检索地图,另一张地图检索路线规划器。
我的代码有问题,我在 Firebug 中收到此错误:
TypeError: a is null
[Break On This Error]
... new S((this.H+this.J)/2,(this.G+this.L)/2)};var zh=yh(-ca,-ca,ca,ca),Ah=yh(0,0,...
您加载http://maps.google.com/maps/api/js
脚本标记,然后在 onload 处理程序中再次延迟加载它,导致原始代码被覆盖并否定之前执行的一些代码initialize()
initialize2()
。
由于地图使用了相同的变量名,您可能会收到此错误:
var map = ...
尝试使用 2 个不同的变量:
var map, map2;
map = new google.maps.Map(document.getElementById("map_go"), myOptions);
map2 = new google.maps.Map(document.getElementById("map_go_full"), myOptions);