将类方法绑定到谷歌地图 v3 中的事件?
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
哦,对了。关闭。呃。
Oh right. Closures. Duh.