为什么“事件未定义”当右键单击 google-map-v3 时

发布于 2024-09-09 00:44:08 字数 654 浏览 5 评论 0原文

这是我的代码:

google.maps.event.addListener(marker, 'rightclick', function(event) {

    //delete marker
    var nowIndex1='nowIndex1';
    function callback1(element, index){
        if(marker == element) nowIndex1=index
    }
    markers.forEach(callback1)
    if(nowIndex1!='nowIndex1') markers.removeAt(nowIndex1)

    //delete path
    var nowIndex2='nowIndex2';
    function callback2(element, index){
        if(event.latLng == element) nowIndex2=index
    }
    path.forEach(callback2)
    if(nowIndex1!='nowIndex1') path.removeAt(nowIndex2)

    marker.setMap(null)

})

错误是“事件未定义”,

所以我应该做什么。

谢谢

this is my code:

google.maps.event.addListener(marker, 'rightclick', function(event) {

    //delete marker
    var nowIndex1='nowIndex1';
    function callback1(element, index){
        if(marker == element) nowIndex1=index
    }
    markers.forEach(callback1)
    if(nowIndex1!='nowIndex1') markers.removeAt(nowIndex1)

    //delete path
    var nowIndex2='nowIndex2';
    function callback2(element, index){
        if(event.latLng == element) nowIndex2=index
    }
    path.forEach(callback2)
    if(nowIndex1!='nowIndex1') path.removeAt(nowIndex2)

    marker.setMap(null)

})

and the error is "event is undefined"

so what should i do .

thanks

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

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

发布评论

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

评论(1

染火枫林 2024-09-16 00:44:08

这个不好。它应该返回 DOM 的 mousedown 事件。我相信这是一个错误。我还尝试访问该事件,因为我想在指针旁边放置一个菜单,所以我必须使用框架为我提供指针的位置,以完成将菜单放在标记旁边。

This one is bad. It is supposed to return the DOM's mousedown event. I believe it is a bug. I also tried to access the event, because I wanted to place a menu next to the pointer, so I had to use the framework to give me the location of the pointer to accomplish putting the menu next to the marker.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文