Google 地图 API:未捕获类型错误:对象 #没有方法“fitBounds”;
我正在尝试使用 Google Maps Api v3 制作地图。
我的地图可以正常工作,并且可以从 XML 文件加载标记。
但我需要居中视图才能看到所有标记,我使用这个:
var map = new google.maps.Map(document.getElementById("map"));
var bounds = new google.maps.LatLngBounds();
-- here I load markers --
-- for each marker, i do: --
bounds.extend(marker.position);
最后:
map.fitBounds(bounds);
但是,在这一点上,我得到了这个恼人的错误:
Uncaught TypeError: Object # has no method 'fitBounds'
有人知道为什么吗?
i'm trying to do a map with Google Maps Api v3.
I have the map working, with the markers loaded ok from a XML file.
But i need to center view to see all markers, I use this:
var map = new google.maps.Map(document.getElementById("map"));
var bounds = new google.maps.LatLngBounds();
-- here I load markers --
-- for each marker, i do: --
bounds.extend(marker.position);
and finally:
map.fitBounds(bounds);
but, at this point, I get this annoying error:
Uncaught TypeError: Object # has no method 'fitBounds'
Somebody knows why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论