Google 地图 API:未捕获类型错误:对象 #没有方法“fitBounds”;

发布于 2024-12-26 08:01:16 字数 503 浏览 1 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文