P粉4038217402023-08-26 00:48:09
可以向 bindPopup
方法传递一个 "options"
参数,该参数可以包含将添加到 div 的 "className"
属性对于弹出窗口:
marker.on('mouseover', function() { marker.bindPopup('<b>Hello world</b>',{className: 'mouseover-popup'}); marker.openPopup(); }) marker.on('click', function() { marker.bindPopup('<b>Hello world</b>',{className: 'click-popup'}); marker.openPopup(); })