J'ai un problème avec google.maps.Symbol polyline
. Je ne peux pas modifier les valeurs par défaut (comme la couleur).
Voici mon code :
var lineSymbol = {
path: google.maps.SymbolPath.FORWARD_CLOSED_ARROW
};
var arrow = {
icon: lineSymbol,
offset: '100%',
strokeColor: "#000000",
strokeOpacity :1,
};
flightPath = new google.maps.Polyline({
path : somePath,
strokeColor: "#ff0000",
strokeOpacity: 1,
icons : [arrow],
});
flightPath.setMap(map);
Après cela, je m'attends à ce que les flèches soient noires ( #000000 color
), mais ils sont toujours #ff0000
.
J'ai également essayé de changer l'échelle pour Symbol, mais rien ne s'est produit.