Can anyone help?
$.getJSON("https://raw.githubusercontent.com/pjhooker/monferratopaesaggi/master/pl_linee_pano_0.geojson", function(data) {
var exp_linee = L.geoJson(data, {
onEachFeature: function (feature, layer) {
L.polylineDecorator(layer, {
patterns: [
{ offset: 12, repeat: 25, symbol: L.Symbol.dash({pixelSize: 10, pathOptions: {color: '#f00', weight: 2}}) },
{ offset: 0, repeat: 25, symbol: L.Symbol.dash({pixelSize: 0}) }
]
}).addTo(linee1);
}
});