将类方法绑定到谷歌地图 v3 中的事件?

发布于 2024-09-06 14:36:38 字数 381 浏览 8 评论 0原文

在 Google Maps API V2 中,您可以使用 GEvent.bind 函数将地图事件绑定到类方法:

GEvent.bind(this.drag_marker, "dragstart", this, this.start_dragging_route);

在上面的示例中,假设这是来自 prototype.init 函数的链接,其中 start_dragging_route 是类内部的方法。

看来绑定方法不再存在,至少在文档中不存在。如果这是真的,我有一种方法可以解决它,但它有点难看,所以我很想听到这个问题的其他解决方案。

如何在 Google Maps API V3 中实现 GEvent.bind 函数?

In V2 of the Google Maps API, you could bind map events to a class method using the GEvent.bind function:

GEvent.bind(this.drag_marker, "dragstart", this, this.start_dragging_route);

In the example above pretend that's a link from a prototype.init function, where start_dragging_route is a method inside the class.

It appears that the bind method doesn't exist anymore, at least not in the documentation. If it's true I have one way to solve it, but it's a touch ugly so I'd love to hear some other solutions to this problem.

How can I implement the GEvent.bind function in Google Maps API V3?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泪冰清 2024-09-13 14:36:38

哦,对了。关闭。呃。

var self = this;
google.maps.event.addListener(this.drag_marker, "dragstart", function(latlng) {
    self.start_dragging_route(latlng);
});

Oh right. Closures. Duh.

var self = this;
google.maps.event.addListener(this.drag_marker, "dragstart", function(latlng) {
    self.start_dragging_route(latlng);
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文