The opacity option does not consider the params input, in contrary to other options. `leaflet-velocity.js, l491` ``` var OPACITY = 0.97; ``` should be ``` var OPACITY = params.opacity || 0.97; ```