Intento agregar entidades con geometrías LineString en diferentes colores a un ol.source.Vector.
Intenté hacer esto con el siguiente código:
var myFeature = new ol.Feature({
geometry : new ol.geom.LineString(coordinates),
style : new ol.style.Style({
stroke : new ol.style.Stroke({color : "red"})})
});
mySource.addFeature(myFeature);
Las coordenadas se transforman correctamente. La función LineString resultante se muestra en la posición correcta en el mapa, pero no en rojo.
¿Qué estoy haciendo mal?