leaflet绘制虚线

753 阅读1分钟
//使用如下option
 const option = {color: 'red',
        weight: 3,
        opacity: 0.8,
        fillOpacity: 0.3,
        fillColor: 'red',
        className: 'dashLine'}
 //CSS
 .dashLine {
  stroke-dasharray: 10;
}