Google Maps API V3 - 将变量添加到 addListener(poly, 'click')

发布于 2024-11-06 21:14:29 字数 521 浏览 0 评论 0原文

已解决

已经解决了,犯了一个错误。我以为你不能为 Poly 对象设置 var,但你可以。

问题

我正在尝试创建一个工具,用户可以在其中创建多条折线并将其保存到数据库中。当用户创建一行时,它将作为编码字符串 (encodePath) 保存到数组中。我还希望用户能够通过单击行来删除行,这是我使用的:

google.maps.event.addListener(poly, 'click', function() {
  this.setMap(null);
  polylines[array_id] = ""; //how do i set the array_id to this eventlistener?
}

现在我还需要从数组中删除编码的字符串,我的问题是:如何添加变量(array_id编码字符串)到此事件侦听器?

当我使用上面编写的代码时,它当然给出最后一个 array_id 而不是折线的 array_id 。

SOLVED

Already solved it, made a mistake. I thought you couldn't set a var to the poly object, but you can.

QUESTION

I'm trying to create a tool where users can create multiple polylines and save them into a database. When a users creates a line it is saved as a encoded string (encodePath) into a array. I also want users to be able to delete the lines by clicking on the line, this I did by using:

google.maps.event.addListener(poly, 'click', function() {
  this.setMap(null);
  polylines[array_id] = ""; //how do i set the array_id to this eventlistener?
}

Now I also need to delete the encoded string from the array, my question here is: how do I add a variable (the array_id of the encoded string) to this eventlistener?

When i use the code as written above, it ofcourse gives the last array_id and not the array_id of the polyline.

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

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

发布评论

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