1. <i id='DVQtL'><tr id='DVQtL'><dt id='DVQtL'><q id='DVQtL'><span id='DVQtL'><b id='DVQtL'><form id='DVQtL'><ins id='DVQtL'></ins><ul id='DVQtL'></ul><sub id='DVQtL'></sub></form><legend id='DVQtL'></legend><bdo id='DVQtL'><pre id='DVQtL'><center id='DVQtL'></center></pre></bdo></b><th id='DVQtL'></th></span></q></dt></tr></i><div id='DVQtL'><tfoot id='DVQtL'></tfoot><dl id='DVQtL'><fieldset id='DVQtL'></fieldset></dl></div>

      <bdo id='DVQtL'></bdo><ul id='DVQtL'></ul>
    1. <legend id='DVQtL'><style id='DVQtL'><dir id='DVQtL'><q id='DVQtL'></q></dir></style></legend>
    2. <small id='DVQtL'></small><noframes id='DVQtL'>

      <tfoot id='DVQtL'></tfoot>

      如何使用传单 map.on('click', function) 事件处理

      时间:2023-05-28
      <tfoot id='qQIcu'></tfoot>
        • <bdo id='qQIcu'></bdo><ul id='qQIcu'></ul>
          • <legend id='qQIcu'><style id='qQIcu'><dir id='qQIcu'><q id='qQIcu'></q></dir></style></legend>
          • <small id='qQIcu'></small><noframes id='qQIcu'>

              <tbody id='qQIcu'></tbody>

          • <i id='qQIcu'><tr id='qQIcu'><dt id='qQIcu'><q id='qQIcu'><span id='qQIcu'><b id='qQIcu'><form id='qQIcu'><ins id='qQIcu'></ins><ul id='qQIcu'></ul><sub id='qQIcu'></sub></form><legend id='qQIcu'></legend><bdo id='qQIcu'><pre id='qQIcu'><center id='qQIcu'></center></pre></bdo></b><th id='qQIcu'></th></span></q></dt></tr></i><div id='qQIcu'><tfoot id='qQIcu'></tfoot><dl id='qQIcu'><fieldset id='qQIcu'></fieldset></dl></div>
              • 本文介绍了如何使用传单 map.on('click', function) 事件处理程序将标记添加到地图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                限时送ChatGPT账号..

                我正在尝试使用事件处理程序向地图添加标记.我可以使用回调函数来管理它,但是当我将函数与事件处理程序分开时就不行了.

                I'm trying to use an event handler to add a marker to the map. I can manage this with a callback function, but not when I separate the function from the event handler.

                回调(http://fiddle.jshell.net/rhewitt/U6Gaa/7/):

                map.on('click', function(e){
                    var marker = new L.marker(e.latlng).addTo(map);
                });
                

                独立函数(http://jsfiddle.net/rhewitt/U6Gaa/6/):

                function newMarker(e){
                    var marker = new L.marker(e.latlng).addTo(map);
                }
                

                推荐答案

                在你的小提琴代码中,你的函数在错误的范围内.尝试在 map 函数内移动函数,而不是在它自己的范围内......即,而不是:

                in your fiddle code, your function is in the wrong scope. try moving the function inside the map function instead of in it's own scope... i.e. instead of:

                });
                
                function addMarker(e){
                // Add marker to map at click location; add popup window
                var newMarker = new L.marker(e.latlng).addTo(map);
                }
                

                使用

                function addMarker(e){
                // Add marker to map at click location; add popup window
                var newMarker = new L.marker(e.latlng).addTo(map);
                }
                });
                

                这篇关于如何使用传单 map.on('click', function) 事件处理程序将标记添加到地图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:R 的传单:如何更改默认 CSS 集群类 下一篇:使用 Leaflet-react 时如何调用 fitBounds()?

                相关文章

                最新文章

                    <tfoot id='C9OnX'></tfoot>
                  1. <small id='C9OnX'></small><noframes id='C9OnX'>

                    <legend id='C9OnX'><style id='C9OnX'><dir id='C9OnX'><q id='C9OnX'></q></dir></style></legend>
                    • <bdo id='C9OnX'></bdo><ul id='C9OnX'></ul>
                    <i id='C9OnX'><tr id='C9OnX'><dt id='C9OnX'><q id='C9OnX'><span id='C9OnX'><b id='C9OnX'><form id='C9OnX'><ins id='C9OnX'></ins><ul id='C9OnX'></ul><sub id='C9OnX'></sub></form><legend id='C9OnX'></legend><bdo id='C9OnX'><pre id='C9OnX'><center id='C9OnX'></center></pre></bdo></b><th id='C9OnX'></th></span></q></dt></tr></i><div id='C9OnX'><tfoot id='C9OnX'></tfoot><dl id='C9OnX'><fieldset id='C9OnX'></fieldset></dl></div>