Eu sei que o traço de linha não está funcionando OL3 (Openlayers 3) foi solicitado anteriormente, mas a solução proposta não está funcionando.
Meu código é:
var calculateStyle= new ol.style.Style({
fill: new ol.style.Fill({
color: [255, 255, 255, 0.6],
opacity: 0.3
}),
stroke: new ol.style.Stroke({
color: [0, 153, 255, 1],
linedash: [40,40],
width: 3
})
});
Eu tentei os dois [4,4]
e [40,40]
sugeri na pergunta vinculada. Mas não está funcionando.
javascript
openlayers
Ishan
fonte
fonte
lineDash: [4,4]
oulineDash: [40,40]
Respostas:
As linhas tracejadas podem ser feitas com:
Eu fiz de você um exemplo online!
http://plnkr.co/edit/AW1YNC?p=preview
Você pode usar este "testador" online para obter várias combinações:
http://phrogz.net/tmp/canvas_dashed_line.html
fonte